aemo_rooftop_pv: Rooftop PV actuals and forecasts

View source: R/rooftop_pv.R

aemo_rooftop_pvR Documentation

Rooftop PV actuals and forecasts

Description

Returns AEMO's region-level estimate of rooftop PV generation, either actuals or forecasts. Published at 30-minute resolution.

Usage

aemo_rooftop_pv(region, start, end, type = c("actual", "forecast"))

Arguments

region

NEM region code.

start, end

Window.

type

One of "actual" (default) or "forecast".

Details

The "actual" figure is an AEMO estimate derived from the APVI sampling model and weather data, not metered SCADA output. It is the best available public measure of aggregate rooftop PV generation but is subject to revision.

Value

An aemo_tbl.

See Also

Other dispatch: aemo_bids(), aemo_constraints(), aemo_dispatch_units(), aemo_fcas_enablement(), aemo_gencon(), aemo_interconnector(), aemo_market_notices(), aemo_outages(), aemo_spd_constraints()

Examples


op <- options(aemo.cache_dir = tempdir())
try({
  now <- Sys.time()
  r <- aemo_rooftop_pv("NSW1",
                        start = now - 3600, end = now)
  head(r)
})
options(op)


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