transm_x_border_phys_flow: Get Cross-Border Physical Flow (12.1.G)

View source: R/en_transmission.R

transm_x_border_phys_flowR Documentation

Get Cross-Border Physical Flow (12.1.G)

Description

It is the measured real flow of energy between the neighbouring areas on the cross borders.

Usage

transm_x_border_phys_flow(
  eic_in = NULL,
  eic_out = 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_in

Energy Identification Code of in domain

eic_out

Energy Identification Code of out domain

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 Minimum time interval in query response is an MTU period, but 1 year range limit applies.

tidy_output

Defaults to TRUE. If TRUE, then flatten nested tables.

security_token

Security token for ENTSO-E transparency platform

Examples

df1 <- entsoeapi::transm_x_border_phys_flow(
  eic_in       = "10Y1001A1001A83F",
  eic_out      = "10YCZ-CEPS-----N",
  period_start = lubridate::ymd(x = "2020-01-01", tz = "CET"),
  period_end   = lubridate::ymd(x = "2020-01-02", tz = "CET"),
  tidy_output  = TRUE
)

str(df1)

df2 <- entsoeapi::transm_x_border_phys_flow(
  eic_in       = "10YCZ-CEPS-----N",
  eic_out      = "10Y1001A1001A83F",
  period_start = lubridate::ymd(x = "2020-01-01", tz = "CET"),
  period_end   = lubridate::ymd(x = "2020-01-02", tz = "CET"),
  tidy_output  = TRUE
)

str(df2)


krose/entsoeapi documentation built on June 15, 2025, 1:46 p.m.