CF lat lon and Panoply display #414
-
QuestionHello. I'm new to CF conventions. dimensions:
The "extended" file has the following metadata: dimensions:
Any suggestion will be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Could it be the order of the dimensions which are troubling Panoply ? I have a similar kind of file which I can view with Panoply as Geo2D Plot, but it has And it also has an additional attribut HTH, |
Beta Was this translation helpful? Give feedback.
Here is an explanation of the order of dimensions in Matlab netCDF files: https://de.mathworks.com/matlabcentral/answers/64018-creating-netcdf-files-how-can-i-set-the-order-of-the-dimensions-in-a-field
It seems the behaviour you observe is related to differences between column-major and row-major storage of data arrays in Matlab and netCDF.
I would think that the correct order of dimensions could fix your display problems as Geo2D Plot in Matlab.
I think you can also have
acc: coordinates = "x y"
in case there are no "lon" and "lat" coordinates in your file (although this is probably implicitely assumed anyway in that case).