Accessing FERC 714 2010 - 2020 via Docker + Jupyter #2467
-
Hello! I am trying to access hourly demand data from the FERC 714 form for the years 2010 - 2020 for WECC. From this link, my understanding is that PUDL has normalized the FERC 714 data from 2006 - 2020. I was unable to pull bulk data from the data tables using datasette, so I set up Docker + Jupyter . However, I am having a hard time finding the demand tables within the pudl_db. Am I looking in the wrong place? I see the data is available from 2021 on from the xbrl_db, but I need access to historical data. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey there, if you'd like to work with all of the hourly data, rather than just browsing it, your best bet is probably to download the full PUDL DB from the most recently successful nightly build. You can find links to the nightly build outputs on the front page of our documentation and the README for this repo. Once you've downloade import sqlalchemy as sa
import pandas as pd
engine = sa.create_engine("sqlite:////path/to/your/downloaded/pudl.sqlite")
# The hourly time series:
dhpa_ferc714 = pd.read_sql("demand_hourly_pa_ferc714", engine)
# A table that maps respondent IDs to their names:
respondents_ferc714 = pd.read_sql("respondent_id_ferc714", engine) But you should also be able to browse the hourly demand table in Datasette. Was the link from the data dictionary page not working? |
Beta Was this translation helpful? Give feedback.
Hey there, if you'd like to work with all of the hourly data, rather than just browsing it, your best bet is probably to download the full PUDL DB from the most recently successful nightly build. You can find links to the nightly build outputs on the front page of our documentation and the README for this repo.
Once you've downloade
pudl.sqlite
you can read the demand table using pandas like this: