-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Description
Should 'zenith': 'solar_zenith_angle',
in REQUEST_VARIABLE_MAP
instead be 'solar_zenith': 'solar_zenith_angle',
? In VARIABLE_MAP
it is solar_zenith
.
pvlib-python/pvlib/iotools/psm3.py
Lines 45 to 61 in 2ca40aa
REQUEST_VARIABLE_MAP = { | |
'ghi': 'ghi', | |
'dhi': 'dhi', | |
'dni': 'dni', | |
'ghi_clear': 'clearsky_ghi', | |
'dhi_clear': 'clearsky_dhi', | |
'dni_clear': 'clearsky_dni', | |
'zenith': 'solar_zenith_angle', | |
'temp_air': 'air_temperature', | |
'temp_dew': 'dew_point', | |
'relative_humidity': 'relative_humidity', | |
'pressure': 'surface_pressure', | |
'wind_speed': 'wind_speed', | |
'wind_direction': 'wind_direction', | |
'albedo': 'surface_albedo', | |
'precipitable_water': 'total_precipitable_water', | |
} |