-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
Distinction between dataset variables and ancillary variables #104
Comments
@egouden Could you please elaborate along an example? It's hard to guess what you are referring to. |
For example, viewing all dataset variables. If one loops over data_vars, one also gets ancillary variables. |
print(ds.var.data_vars) # only data variables
print(ds.var.ancillary_vars) # only ancillary variables But not sure, if this is worth the action. |
What about using attributes to store these ancillary variables? |
Are you referring to those ancillary variables https://docs.openradarscience.org/projects/xradar/en/stable/datamodel.html#ancillary-variables? It might not be possible as those variables are data variables in the underlying netcdf file. Maybe can describe the use case you have in mind and why you need this separated? |
There are actually 3 types of sweep variables:
Accessing only the observed variables should be a basic feature indeed. Is it not already needed in our code? |
I cannot find a way to distinguish between the dataset variables and ancillary variables.
The text was updated successfully, but these errors were encountered: