Skip to content

Commit

Permalink
Merge branch 'main' into phmsa-company-transform
Browse files Browse the repository at this point in the history
  • Loading branch information
e-belfer authored Jan 7, 2025
2 parents 95e9a5e + c5731f1 commit 50ca79a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ v2024.XX.x (2024-MM-DD)
New Data Coverage
^^^^^^^^^^^^^^^^^

EIA 176
~~~~~~~
* Add a couple of semi-transformed interim EIA-176 (natural gas sources and
dispositions) tables. They aren't yet being written to the database, but are one step
closer. See :issue:`3555` and PRs :pr:`3590,3978`. Thanks to :user:`davidmudrauskas`
for moving this dataset forward.
* Extracted these interim tables up through the latest 2023 data release. See
:issue:`4002` and :pr:`4004`.

Bug Fixes
^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion src/pudl/metadata/sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"source_format": "Comma Separated Value (.csv)",
},
"field_namespace": "eia",
"working_partitions": {"years": sorted(set(range(1997, 2023)))},
"working_partitions": {"years": sorted(set(range(1997, 2024)))},
"contributors": [CONTRIBUTORS["catalyst-cooperative"]],
"keywords": sorted(
set(
Expand Down
2 changes: 1 addition & 1 deletion src/pudl/package_data/settings/etl_fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ datasets:
years: [2020, 2023]
eia:
eia176:
years: [2020, 2022]
years: [2020, 2023]
eia191:
years: [2020, 2023]
eia757a:
Expand Down
1 change: 1 addition & 0 deletions src/pudl/package_data/settings/etl_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ datasets:
2020,
2021,
2022,
2023,
]
eia191:
years: [2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023]
Expand Down
2 changes: 1 addition & 1 deletion src/pudl/workspace/datastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class ZenodoDoiSettings(BaseSettings):
"""Digital Object Identifiers pointing to currently used Zenodo archives."""

censusdp1tract: ZenodoDoi = "10.5281/zenodo.4127049"
eia176: ZenodoDoi = "10.5281/zenodo.10607843"
eia176: ZenodoDoi = "10.5281/zenodo.14589676"
eia191: ZenodoDoi = "10.5281/zenodo.10607837"
eia757a: ZenodoDoi = "10.5281/zenodo.10607839"
eia860: ZenodoDoi = "10.5281/zenodo.13682785"
Expand Down

0 comments on commit 50ca79a

Please sign in to comment.