Skip to content

Accessing FERC 714 2010 - 2020 via Docker + Jupyter #2467

Closed Answered by zaneselvans
kristinaavery asked this question in Help Me!
Discussion options

You must be logged in to vote

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:

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("…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@kristinaavery
Comment options

Answer selected by bendnorman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ferc714 Anything having to do with FERC Form 714 datasette Issues related the accessing PUDL data via Datasette.
2 participants