-
Notifications
You must be signed in to change notification settings - Fork 284
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
NetCDF global attributes vs data variable local attributes #3325
Comments
Ping @zklaus 👍 |
A non-breaking way to implement that may be to introduce two new class members |
@zklaus I was thinking along the same lines. In summary:
So for the case where there is a common attribute shared between To ensure that there is a non-breaking behaviour here, then I think that I'm right in saying that if a user writes to the Hmmm.... this make sense to me. Thoughts? |
Exactly what I was thinking! |
We bumped into this ticket while looking at a related project. Can I check what would happen when you save a cubelist rather than a cube? If cubes in the cubelist had different values of the same global attribute, how would this be saved? If this saved netCDF file was loaded back into Iris would we get the same cubelist and if we didn't, would this matter? |
@jonseddon Good question... Clearly, if there is a However, it begs the question whether a To be honest, I'd opt to separate concerns here. I'd see the debate about |
I had a question about this :) Does it make sense to add global attributes and variable attributes, which I would argue are netCDF-specific concepts, to the cube, which is meant to be format-agnostic? |
Re cubelists: The question is certainly a good one. Note that right now there is no guarantee that loading a single cube from a netcdf file and saving it again will give you the same file. For example,
Seeing as it seems to me that a lot (most?) data has one variable per file (notably of course all cmip and cordex data) I am not sure I would be worried about consistency in cubelist storing so much, at least until we have better consistency in cube storing. Though it is certainly a good idea to keep this in mind so as not to make unnecessary outright contradictory decisions. Re format agnosticism: That is certainly a nice goal, but maybe it needs better definition? It seems that attributes in and of themselves are unsupportable in, eg grib and derived formats. Surely we don't want to abandon them completely. So, is there a format that has attribute support, is supported by iris, and could not be made to work with this model? |
@ehogan From a purely idealistic perspective, I'd agree with you. A For me it's an intention at best, rather than a hard and fast rule. Consider the special way that we handle PP I don't know if this helps answer your question... |
Actually we should have something in GRIB space too, but we don't. |
Update Mon 3rd July:
this effort is now handled in it's own project
please see there for existing task breakdown + progress
At the moment
iris
takes a rational but naive approach to dealing with the local attributes of a NetCDF variable (a variable that becomes a cube) and the global attributes of the NetCDF file that the said variable comes from.That is, the resultant
cube.attributes
will be a combination of both the local and global attributes, where the local attributes will take precedence, and overwrite, common global attributes.From the inception of
iris
, and in the light of no use cases, this seemed like a reasonable thing to do. However, such an approach prevents preservation of the local and global attributes metadata. This is a major issue for many users, who require to preserve all attribute metadata.We require to resolve this issue now in
iris
once and for all 😄Note that, if a solution to this issue was implemented, then it would most likely be a breaking change - caution is needed here.
This is somewhat tangential related to #2352
The text was updated successfully, but these errors were encountered: