RamiKrispin / atsaf

Applied Time Series Analysis and Forecasting
https://ramikrispin.github.io/atsaf/
Other
166 stars 13 forks source link

Create a data package #12

Open RamiKrispin opened 2 years ago

RamiKrispin commented 2 years ago

Data requirements Frequency:

Resources

RamiKrispin commented 2 years ago

US hourly demand for electricity by subregion

API: EIA

Dashboard: https://www.eia.gov/opendata/browser/electricity/rto/region-sub-ba-data

API URL: https://api.eia.gov/v2/electricity/rto/region-sub-ba-data/data/

METHOD: GET

SERIES DESCRIPTION: Hourly demand by balancing authority subregion. Source: Form EIA-930 Product: Hourly Electric Grid Monitor

Header:

"X-Params": {
    "frequency": "hourly",
    "data": [
        "value"
    ],
    "facets": {},
    "start": null,
    "end": null,
    "sort": [
        {
            "column": "parent",
            "direction": "desc"
        }
    ],
    "offset": 0,
    "length": 5000,
    "api-version": "2.0.2"
}
RamiKrispin commented 2 years ago

US hourly demand and net generation of electricity by subregion

Dashboard: https://www.eia.gov/opendata/browser/electricity/rto/region-data

API URL: https://api.eia.gov/v2/electricity/rto/region-data/data/

METHOD: GET

SERIES DESCRIPTION: Hourly demand, day-ahead demand forecast, net generation, and interchange by balancing authority. Source: Form EIA-930 Product: Hourly Electric Grid Monitor

Header:

"X-Params": {
    "frequency": "hourly",
    "data": [
        "value"
    ],
    "facets": {
        "type": [
            "D",
            "NG"
        ]
    },
    "start": null,
    "end": null,
    "sort": [
        {
            "column": "period",
            "direction": "desc"
        }
    ],
    "offset": 0,
    "length": 5000,
    "api-version": "2.0.2"
}
RamiKrispin commented 2 years ago

Monthly demand for natural gas

Dashboard: https://www.eia.gov/opendata/browser/natural-gas/sum/lsum

API URL: https://api.eia.gov/v2/natural-gas/sum/lsum/data/

METHOD: GET

Header:

"X-Params": {
    "frequency": "monthly",
    "data": [
        "value"
    ],
    "facets": {
        "series": [
            "N3010NY2"
        ]
    },
    "start": null,
    "end": null,
    "sort": [
        {
            "column": "period",
            "direction": "desc"
        }
    ],
    "offset": 0,
    "length": 5000,
    "api-version": "2.0.2"
}
RamiKrispin commented 2 years ago

Vehicle Miles Traveled

Source: FRED

Link: https://fred.stlouisfed.org/series/TRFVOLUSM227NFWA

RamiKrispin commented 2 years ago

Total Vehicle Sales

Source: FRED

Link: https://fred.stlouisfed.org/series/TOTALNSA

RamiKrispin commented 2 years ago

Total Construction Spending: Total Construction in the United States

Source: FRED

Link: https://fred.stlouisfed.org/series/TTLCON

RamiKrispin commented 2 years ago

Air Traffic Passenger Statistics

Source: SF Data Portal

Link: https://data.sfgov.org/Transportation/Air-Traffic-Passenger-Statistics/rkru-6vcg

RamiKrispin commented 2 years ago

Air Traffic Landings Statistics

Source: SF Data Portal

Link: https://data.sfgov.org/Transportation/Air-Traffic-Landings-Statistics/fpux-q53t

RamiKrispin commented 2 years ago

Recommendation from LinkedIn post:

RamiKrispin commented 1 year ago

Recommendation from Twitter post:

RamiKrispin commented 1 year ago

Daily demand, day-ahead demand forecast, net generation, and interchange by balancing authority

Dashboard: https://www.eia.gov/opendata/browser/electricity/rto/daily-region-data

API URL: https://api.eia.gov/v2/electricity/rto/daily-region-data/data/

METHOD: GET

Header:

"X-Params": {
    "frequency": "daily",
    "data": [
        "value"
    ],
    "facets": {
        "timezone": [
            "Pacific"
        ],
        "type": [
            "D"
        ]
    },
    "start": null,
    "end": null,
    "sort": [
        {
            "column": "period",
            "direction": "desc"
        }
    ],
    "offset": 0,
    "length": 5000,
    "api-version": "2.0.2"
}