Live
Get irradiance weather and power estimated actuals for near real-time and past 7 days for the requested location, derived from satellite (clouds and irradiance over non-polar continental areas) and numerical weather models (other data). More information in the API Docs.
The module live
has 3 available methods:
Endpoint | API Docs |
---|---|
radiation_and_weather |
details |
rooftop_pv_power |
details |
advanced_pv_power |
details |
Example
from solcast import live
res = live.radiation_and_weather(
latitude=-33.856784,
longitude=151.215297,
output_parameters='dni,ghi'
)
res.to_pandas().head()
period_end | dni | ghi |
---|---|---|
2023-08-18 04:00:00+00:00 | 817 | 575 |
2023-08-18 03:30:00+00:00 | 883 | 634 |
2023-08-18 03:00:00+00:00 | 412 | 532 |
2023-08-18 02:30:00+00:00 | 492 | 570 |
2023-08-18 02:00:00+00:00 | 197 | 473 |