aemo_gas: Gas market data (STTM, DWGM)

View source: R/gas.R

aemo_gasR Documentation

Gas market data (STTM, DWGM)

Description

Returns Short Term Trading Market (STTM, Adelaide, Brisbane, Sydney hubs) or Declared Wholesale Gas Market (DWGM, Victoria) prices and volumes.

Usage

aemo_gas(market = c("sttm", "dwgm"), hub = NULL, start, end)

Arguments

market

One of "sttm" (default) or "dwgm".

hub

Optional STTM hub: "adelaide", "brisbane", or "sydney". Ignored for DWGM.

start, end

Window.

Value

An aemo_tbl.

Examples


op <- options(aemo.cache_dir = tempdir())
try({
  now <- Sys.time()
  g <- aemo_gas(market = "sttm", hub = "sydney",
                 start = now - 7 * 86400, end = now)
  head(g)
})
options(op)


aemo documentation built on April 29, 2026, 1:07 a.m.