load_actual_total | R Documentation |
It is defined as equal to the actual sum of power generated by plants on both TSO/DSO networks, from which is deduced:
the balance (export-import) of exchanges on interconnections between neighbouring bidding zones
the power absorbed by energy storage resources
load_actual_total(
eic = NULL,
period_start = lubridate::ymd(Sys.Date() - lubridate::days(x = 1L), tz = "CET"),
period_end = lubridate::ymd(Sys.Date(), tz = "CET"),
tidy_output = TRUE,
security_token = Sys.getenv("ENTSOE_PAT")
)
eic |
Energy Identification Code of the bidding zone/country/control area |
period_start |
POSIXct or YYYY-MM-DD HH:MM:SS format |
period_end |
POSIXct or YYYY-MM-DD HH:MM:SS format |
tidy_output |
Defaults to TRUE. If TRUE, then flatten nested tables. |
security_token |
Security token for ENTSO-E transparency platform |
# German average daily load.
df <- entsoeapi::load_actual_total(
eic = "10Y1001A1001A83F",
period_start = lubridate::ymd(x = Sys.Date() -
lubridate::days(x = 30), tz = "CET"),
period_end = lubridate::ymd(x = Sys.Date(), tz = "CET"),
tidy_output = TRUE
)
str(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.