-
Notifications
You must be signed in to change notification settings - Fork 6
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
nc_grids is not normal form #26
Comments
This is actually hard because this is used in quite a lot of places. Can shortcut now with a function like this scheme, and pick off the variables from top to bottom. nc_axes(f) %>% dplyr::inner_join(nc_dims(f), c("dimension" = "id")) %>% dplyr::inner_join(nc_vars(f), c("variable" = "name")) %>% arrange(type == "NC_CHAR", -ndims) |
Now trying nesting column "variables" within |
Looking good. b433604 |
From @mdsumner on February 13, 2019 7:29
nc_grids
should have distinct grids, andnc_vars
should list the grid it's inBoth should have
ndims
, nc_grids also nvarsFollowing on from ropensci/tidync#77 pain, this will help the default variable or grid selection:
Copied from original issue: ropensci/tidync#78
The text was updated successfully, but these errors were encountered: