We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C3S might want to allow picking of a list of years, months and days.
xarray can do this, very simply, e.g.:
xarray
>>> ds.tas.sel(time=[cftime.DatetimeGregorian(1986, 11, 16), cftime.DatetimeGregorian(1987, 3, 16, 12), cftime.DatetimeGregorian(1987, 9, 16)]) <xarray.DataArray 'tas' (time: 3, lat: 256, lon: 512)>
The text was updated successfully, but these errors were encountered:
At the moment, we do:
time=<start>/<end>
We will need something like:
year=<y1>,<y2>,<y3> & month=<m1>,<m2>,<m3>
E.g.: if you want January and July for 2001,2003 and 2010
year=2001,2003,2010&month=01,07
Issues:
time
year/month
day
hour
Sorry, something went wrong.
Link to #186
No branches or pull requests
Description
C3S might want to allow picking of a list of years, months and days.
xarray
can do this, very simply, e.g.:The text was updated successfully, but these errors were encountered: