load_actual_total: Get Actual Total Load (6.1.A)

View source: R/en_load.R

load_actual_totalR Documentation

Get Actual Total Load (6.1.A)

Description

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

Usage

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")
)

Arguments

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

Examples

# 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)


krose/entsoeapi documentation built on Jan. 13, 2025, 9:01 p.m.