Skip to content

TMY

TMY (Typical Meteorological Year) is a collation of historical weather data for a specified location for a one year period. The dataset is derived from a multi-year time series specifically selected so that it presents the unique weather phenomena for the location, and provides annual averages that are consistent with long term averages. See the API docs The tmy module has 2 methods:

Endpoint API Docs
radiation_and_weather details
rooftop_pv_power details

Example

from solcast import tmy

res = tmy.rooftop_pv_power(
    latitude=-33.856784,
    longitude=151.215297,
    capacity=3
)

res.to_pandas().head()
period_end pv_power_rooftop
2059-01-01 01:00:00+00:00 1.461
2059-01-01 02:00:00+00:00 0.974
2059-01-01 03:00:00+00:00 0.731
2059-01-01 04:00:00+00:00 0.4
2059-01-01 05:00:00+00:00 0.231