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
VarGetter.GetSlice
If a variable has data of multiple dimension, GetSlice will retrieve all the data of the slice of the first dimension.
Example : variable of dimensions time, latitude, longitude
time
latitude
longitude
GetSlice(0, 2) will retrieve the data for all latitude, longitude, for the time 0 and 1.
GetSlice(0, 2)
I am wondering how this API could be improved to allow slicing all dimensions.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If a variable has data of multiple dimension, GetSlice will retrieve all the data of the slice of the first dimension.
Example : variable of dimensions
time
,latitude
,longitude
GetSlice(0, 2)
will retrieve the data for alllatitude
,longitude
, for thetime
0 and 1.I am wondering how this API could be improved to allow slicing all dimensions.
The text was updated successfully, but these errors were encountered: