This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.
Hi Jim,
In your file, the Z is not defined correctly:
float Z(Time=1, bottom_top=51, south_north=1001, west_east=1001);
:coordinates = "XLONG XLAT ZNU";
:stagger = " ";
:units = "m";
:description = "Height";
:MemoryOrder = "XYZ";
:FieldType = 104; // int
The correct Z should be like the below, and you need to have z_stag variable
too:
double z(bottom_top=51);
:units = "";
:long_name = "eta values from variable ZNU";
:positive = "down";
:_CoordinateAxisType = "GeoZ";
:_CoordinateAliasForDimension = "bottom_top";
:_CoordinateZisPositive = "down";
double z_stag(bottom_top_stag=52);
:units = "";
:long_name = "eta values from variable ZNW";
:positive = "down";
:_CoordinateAxisType = "GeoZ";
:_CoordinateAliasForDimension = "bottom_top_stag";
:_CoordinateZisPositive = "down";
Yuan
Ticket Details
===================
Ticket ID: OVR-601731
Department: Support IDV
Priority: High
Status: Open
===================
NOTE: All email exchanges with Unidata User Support are recorded in the Unidata
inquiry tracking system and then made publicly available through the web. If
you do not want to have your interactions made available in this way, you must
let us know in each email you send to us.