@JimBiardCics How about specifying the axis attributes in the coordinate
variable attributes?
For example:
```
double y(y);
y:standard_name = "projection_y_coordinate";
y:axis_order = 1
y:axis_name = "Northing"
y:axis_abbreviation = "Y"
y:axis_direction = "north"
y:axis_unit = "metre"
double x(x);
x:standard_name = "projection_x_coordinate";
x:axis_order = 0
x:axis_name = "Easting"
x:axis_abbreviation = "X"
x:axis_direction = "east"
x:axis_unit = "metre"
float Temperature(y, x);
Temperature:units = "K";
....
Temperature:grid_mapping = "Lambert_Conformal: x y";
```
Side note: I have found in my experience the explicit is better than implicit.
See [Zen of Python](https://www.python.org/dev/peps/pep-0020/).
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/cf-convention/cf-conventions/issues/223#issuecomment-577191303
This list forwards relevant notifications from Github. It is distinct from
[email protected], although if you do nothing, a subscription to the
UCAR list will result in a subscription to this list.
To unsubscribe from this list only, send a message to
[email protected].