Open
Description
🐛 Bug Report
When one of the cubes involved in regridding has coordinates with a geostationary coordinate system, their units ought to be in radians, however iris insists that they ought to be in meters and regridding will fail when it gets to this line:
iris/lib/iris/analysis/_regrid.py
Lines 876 to 881 in c526ce0
This logic should be changed to allow for gesostationary coordinates with radian units.
See Proj for a description of the geostationary projection: https://proj.org/en/9.3/operations/projections/geos.html
Metadata
Metadata
Assignees
Type
Projects
Status
No status
Activity
stephenworsley commentedon Sep 20, 2023
See the CF conventions for this projection for a more concrete statement of expected units: http://cfconventions.org/cf-conventions/cf-conventions.html#_geostationary_projection
Note that this also suggests we ought to be able to handle x and y coordinates with the names
projection_x_angular_coordinate
andprojection_y_angular_coordinate
.trexfeathers commentedon Oct 17, 2023
In case it helps:
iris/lib/iris/plot.py
Lines 984 to 996 in e9c77c0
trexfeathers commentedon Oct 26, 2023
Need to remember to update
guess_coord_axis()
when we add these new coordinate names.