Skip to content

Commit

Permalink
Fix temp_dew point mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamRJensen committed Dec 1, 2023
1 parent dba9a9c commit 8faf76a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pvlib/iotools/psm3.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
'Clearsky DNI': 'dni_clear',
'Solar Zenith Angle': 'solar_zenith',
'Temperature': 'temp_air',
'Dew point': 'temp_dew',
'Dew Point': 'temp_dew',
'Relative Humidity': 'relative_humidity',
'Pressure': 'pressure',
'Wind Speed': 'wind_speed',
Expand Down
2 changes: 1 addition & 1 deletion pvlib/tests/iotools/test_psm3.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def test_read_psm3_map_variables():
data, metadata = psm3.read_psm3(MANUAL_TEST_DATA, map_variables=True)
columns_mapped = ['Year', 'Month', 'Day', 'Hour', 'Minute', 'dhi', 'ghi',
'dni', 'ghi_clear', 'dhi_clear', 'dni_clear',
'Cloud Type', 'Dew Point', 'solar_zenith',
'Cloud Type', 'temp_dew', 'solar_zenith',
'Fill Flag', 'albedo', 'wind_speed',
'wind_direction', 'precipitable_water',
'relative_humidity', 'temp_air', 'pressure']
Expand Down

0 comments on commit 8faf76a

Please sign in to comment.