Hi team,
While reviewing the build_gas_input_locations.py script today, I noticed that in the "Gas extraction - main" sheet of the Global Energy Monitor dataset, some entries in the "Fuel description" column are labeled as "Gas" (capital G) instead of "gas".
This may affect the filtering logic at line 75 of the script:
p = p[p["Fuel description"].str.contains("gas")]
Since .str.contains("gas") is case-sensitive by default, it might exclude rows labeled "Gas". Could this be impacting the output?
Best,
Amin