pudl.transform.eia191#
Transform EIA Form 191 monthly underground natural gas storage data.
Attributes#
Functions#
|
Transform raw EIA-191 monthly underground natural gas storage data. |
Module Contents#
- pudl.transform.eia191.core_eia191__monthly_gas_storage(raw_eia191__data: pandas.DataFrame) pandas.DataFrame[source]#
Transform raw EIA-191 monthly underground natural gas storage data.
One row per storage reservoir per month, identified by the EIA-assigned reservoir id and report_date.
Transformations include:
Combine
yearandmonthinto a singlereport_datecolumn.Normalize free-text string columns with
pudl.helpers.simplify_strings()(lower-case, strip whitespace, remove non-standard characters).Pass
base_gas_mcf,working_gas_capacity_mcf, andtotal_field_capacity_mcfthrough as reported. These are operator self-reports under a loose EIA definition and are not additively consistent:totaldoes not reliably equalworking + base(~23% of rows differ). Do not assume additivity.
- Parameters:
raw_eia191__data – Concatenated raw CSV data from the PUDL EIA-191 Zenodo archive (RP8 monthly dataset, 2014–present).
- Returns:
Cleaned monthly gas storage DataFrame with a combined report_date column.