Skip to content

Commit

Permalink
Add Q3 2024 CEMS data to ETL (#3948)
Browse files Browse the repository at this point in the history
* Add Q3 2024 data to ETL

* Update release notes
  • Loading branch information
e-belfer authored Nov 6, 2024
1 parent fbfcb51 commit e6581fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ EIA 930
* Added EIA 930 hourly data through the end of October as part of the Q3 quarterly
release. See :issue:`3942` and :pr:`3946`.

EPA CEMS
~~~~~~~~
* Added 2024 Q3 of CEMS data. See :issue:`3943` and :pr:`3948`.

.. _release-v2024.10.0:

---------------------------------------------------------------------------------------
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 @@ -426,7 +426,7 @@
"working_partitions": {
"year_quarters": [
str(q).lower()
for q in pd.period_range(start="1995q1", end="2024q2", freq="Q")
for q in pd.period_range(start="1995q1", end="2024q3", freq="Q")
]
},
"contributors": [
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 @@ -199,7 +199,7 @@ class ZenodoDoiSettings(BaseSettings):
eiaaeo: ZenodoDoi = "10.5281/zenodo.10838488"
eia_bulk_elec: ZenodoDoi = "10.5281/zenodo.13149083"
epacamd_eia: ZenodoDoi = "10.5281/zenodo.7900974"
epacems: ZenodoDoi = "10.5281/zenodo.13240556"
epacems: ZenodoDoi = "10.5281/zenodo.14037184"
ferc1: ZenodoDoi = "10.5281/zenodo.13149094"
ferc2: ZenodoDoi = "10.5281/zenodo.13149082"
ferc6: ZenodoDoi = "10.5281/zenodo.13149089"
Expand Down

0 comments on commit e6581fb

Please sign in to comment.