-
Notifications
You must be signed in to change notification settings - Fork 26
Description
Hello @daquinterop I hope you are doing great, we have got this error while creating weather instance, can you give us hint on this ? thanks
TypeError Traceback (most recent call last)
~\AppData\Local\Temp\ipykernel_7804\2970603011.py in
7 'Cumulative precipitation(mm)': 'RAIN',
8 'Cumulative solar radiation(MJ/m2)': 'SRAD',
----> 9 'Average relative humidity(%)': 'RHUM'
10 }
11 )
TypeError: init() got an unexpected keyword argument 'variables'

apologies if its very basic , we are super new to this.
Create a WeatherData instance
WTH_DATA = Weather(
dt,
variables={
'Absolute maximum temperature (°C)': 'TMAX',
'Absolute minimum temperature (°C)': 'TMIN',
'Cumulative precipitation(mm)': 'RAIN',
'Cumulative solar radiation(MJ/m2)': 'SRAD',
'Average relative humidity(%)': 'RHUM'
}
)
Write a weather data file
dt.to_csv('weather.csv')
# Create a WeatherStation instance
wth = WeatherStation(
WTH_DATA,
{
'ELEV': float(X_data['ELEV'].values[0]),
'LAT': float(X_data['LAT'].values[0]),
'LON': float(X_data['LON'].values[0]),
'INSI': X_data['INSI'].values[0]
}
)
thanks