outages_offshore_grid | R Documentation |
Unavailability of the off-shore grid that reduce wind power feed-in during at least one market time unit. Wind power fed in at the time of the change in the availability is provided.
outages_offshore_grid(
eic = NULL,
period_start = lubridate::ymd(Sys.Date() + lubridate::days(x = 1L), tz = "CET"),
period_end = lubridate::ymd(Sys.Date() + lubridate::days(x = 2L), tz = "CET"),
period_start_update = NULL,
period_end_update = NULL,
doc_status = NULL,
tidy_output = TRUE,
security_token = Sys.getenv("ENTSOE_PAT")
)
eic |
Energy Identification Code of the bidding zone/ control area (To extract outages of bidding zone DE-AT-LU area, it is recommended to send queries per control area i.e. CTA|DE(50Hertz), CTA|DE(Amprion), CTA|DE(TeneTGer), CTA|DE(TransnetBW),CTA|AT,CTA|LU but not per bidding zone.) |
period_start |
the starting date of the in-scope period in POSIXct or YYYY-MM-DD HH:MM:SS format |
period_end |
the ending date of the outage in-scope period in POSIXct or YYYY-MM-DD HH:MM:SS format |
period_start_update |
notification submission/update starting date in POSIXct or YYYY-MM-DD HH:MM:SS format |
period_end_update |
notification submission/update ending date in POSIXct or YYYY-MM-DD HH:MM:SS format |
doc_status |
Notification document status. "A05" for active, "A09" for cancelled and "A13" for withdrawn. Defaults to NULL which means "A05" and "A09" together. |
tidy_output |
Defaults to TRUE. flatten nested tables |
security_token |
Security token for ENTSO-E transparency platform |
df <- entsoeapi::outages_offshore_grid(
eic = "10Y1001A1001A82H",
period_start = lubridate::ymd(x = Sys.Date() -
lubridate::days(x = 365L),
tz = "CET"),
period_end = lubridate::ymd(x = Sys.Date(),
tz = "CET"),
period_start_update = lubridate::ymd(x = Sys.Date() -
lubridate::days(x = 365L),
tz = "CET"),
period_end_update = lubridate::ymd(x = Sys.Date(),
tz = "CET")
)
str(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.