get_pvgis_hourly #1890
get_pvgis_hourly
#1890
-
I was wondering why this function only allows to retrieve hourly data from 2005 to 2016. The web application of pvgis allows to get data from SARAH2, for instance, from 2005 to 2020. Thanks a lot for any clarification |
Beta Was this translation helpful? Give feedback.
Answered by
kandersolar
Oct 17, 2023
Replies: 1 comment 1 reply
-
I think the most recent data is only available in PVGIS version 5.2. The API that pvlib accesses is still serving 5.1. If you specify the 5.2 endpoint like this, you can get 2020 data: import pvlib
df, params, meta = pvlib.iotools.get_pvgis_hourly(45, 8, raddatabase='PVGIS-SARAH2', url='https://re.jrc.ec.europa.eu/api/v5_2/') More info: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
AdamRJensen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think the most recent data is only available in PVGIS version 5.2. The API that pvlib accesses is still serving 5.1. If you specify the 5.2 endpoint like this, you can get 2020 data:
More info: