I am interested into retrieving the value of the yearly in plane irradiation via code, given a database of parameters to be taken from the function get_pvgis_hourly
, from this parser\getter, as follows:
get_pvgis_hourly(45.858217, 12.267183, angle=7, aspect=-44, outputformat='csv',
usehorizon=True, userhorizon=None, raddatabase="PVGIS-SARAH",
startyear=None, endyear=None, pvcalculation=False,
peakpower=1, pvtechchoice='crystSi',
mountingplace='free', loss=14, trackingtype=0,
optimal_inclination=False, optimalangles=False,
components=False, url=URL, map_variables=True, timeout=30)[0].sum()
and the output is the following:
poa_global 17993672.40
solar_elevation 1489417.07
temp_air 1417261.89
wind_speed 213468.18
Int 2386.00
dtype: float64
But if I use the samen data in PVGIS - PV Performance Tool like this
I obtain different data:
Any hint would be apreciated.
I suggest getting into the habit of examining the underlying data prior to summarizing it. Oftentimes you will find that the assumptions you had about the data don't hold. Printing and plotting the data are good places to start.
This shows that
data
holds hourly values spanning 12 years, so when you calculate the sum of the entire thing, it is total insolation over 12 years. The PVGIS website divides by 12 to get average annual insolation. Finally, notice that there is a units difference (kWh/m^2 vs Wh/m^2), so dividing by 1000 gets things lining up: