You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default command for the exercise after creating and stalling the plugin is:
ds = cml.load_dataset('my-plugin', parameter = 'soil_temperature')
However the created function requires "year" as an argument. Also, when I attempt to use any year as in:
ds = cml.load_dataset('my-plugin', parameter = 'soil_temperature', year=2000)
I receive the following error:
ValueError: Invalid value 'soil_temperature', possible values are ['tp', 't2m'] (EnumSingleOrListType)
Then, if I try to change the parameter, for example to 't2m', I would get:
HTTPError: 404 Client Error: Not Found for url: https://storage.ecmwf.europeanweather.cloud/climetlab/test-data/0.5/fixtures/plugin_create_dataset_example_2000_t2m.grib
I've changed the 'year' entry and received the same error for any year between 1980-2010
The text was updated successfully, but these errors were encountered:
The default command for the exercise after creating and stalling the plugin is:
ds = cml.load_dataset('my-plugin', parameter = 'soil_temperature')
However the created function requires "year" as an argument. Also, when I attempt to use any year as in:
ds = cml.load_dataset('my-plugin', parameter = 'soil_temperature', year=2000)
I receive the following error:
ValueError: Invalid value 'soil_temperature', possible values are ['tp', 't2m'] (EnumSingleOrListType)
Then, if I try to change the parameter, for example to 't2m', I would get:
HTTPError: 404 Client Error: Not Found for url: https://storage.ecmwf.europeanweather.cloud/climetlab/test-data/0.5/fixtures/plugin_create_dataset_example_2000_t2m.grib
I've changed the 'year' entry and received the same error for any year between 1980-2010
The text was updated successfully, but these errors were encountered: