-
Notifications
You must be signed in to change notification settings - Fork 2
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
General data wrangling #57
Comments
We could also maybe be strict about expected content, to avoid obvious problems ...
But, this approach involves plugging all loopholes for different means of putting things in a container, In any case, strictness + correctness is hard to maintain since the objects are designed for free use. In that view, it makes sense to make it easy to do things 'right', preserving the expected.
conclusion :
|
Although strictly excluded as a goal for the initial release,
I still think the 'secondary' usage of ncdata will be useful :
For this there real scope for some convenience and sugar.
Some ideas :
ds.is_valid(error_when_not=False)
: checking the consistencies not ensured by the free-and-easy designideasds.variables['x'].name == 'x'
)el.variables[var.name] = var
-->el.variables.add(var)
ds.variables.rename('x', 'y')
e.g.
NcData(dimensions=nc_dims(x=3, y=5, t=(2, True)), variables=nc_vars(x=(['x'], int), y=(['y'], int), data=(['t', 'y', 'x'], float))
(or something !)
el.ncd_setatt(name, value)
~=el.attributes[name] = NcAttribute(name, value)
el.ncd_getatt(name)
~=el.attributes.get('name', NcAttribute('', None)).as_python_value()
Update:
v0.1.1 delivered most of this :
- but not (yet) validity checking
For instance, some actions I needed to adjust a given file output from xarray so that Iris can correctly interpret the coord-system ...
So, how about
The text was updated successfully, but these errors were encountered: