Skip to contents

Permanent allocation limitations to cross-border capacity on HVDC lines.

Usage

hvdc_link_constrains(
  eic_in = NULL,
  eic_out = NULL,
  eic_ic = NULL,
  process_type = "A63",
  period_start = ymd(Sys.Date() - days(x = 7L), tz = "CET"),
  period_end = ymd(Sys.Date(), tz = "CET"),
  tidy_output = TRUE,
  security_token = Sys.getenv("ENTSOE_PAT")
)

Arguments

eic_in

Energy Identification Code of the in domain

eic_out

Energy Identification Code of the out domain

eic_ic

Energy Identification Code of the interconnector If used, data for the given Transmission Asset is returned

process_type

"A47" Manual frequency restoration reserve "A51" Automatic Frequency Restoration Reserve "A63" Imbalance Netting; Defaults to "A63"

period_start

POSIXct or YYYY-MM-DD HH:MM:SS format One year range limit applies

period_end

POSIXct or YYYY-MM-DD HH:MM:SS format One year range limit applies

tidy_output

Defaults to TRUE. flatten nested tables

security_token

Security token for ENTSO-E transparency platform

Value

A tibble::tibble() with the queried data.

Examples

if (FALSE) { # \dontrun{
df <- entsoeapi::hvdc_link_constrains(
  eic_in = "10YAT-APG------L",
  eic_out = "10YDE-RWENET---I",
  process_type = "A63",
  period_start = lubridate::ymd(x = "2022-01-01", tz = "CET"),
  period_end = lubridate::ymd(x = "2022-01-02", tz = "CET"),
  tidy_output = TRUE
)

dplyr::glimpse(df)
} # }