Replies: 2 comments 3 replies
-
From @SciTools/peloton: Hi @hellovyu, thanks for getting in touch. As you've noticed, conservative regridding does not work here. Other forms of conversion (i.e. not regridding) would make the data meaningless, so that's not an option. We suggest you look at iris-esmf-regrid, which uses spherical mathematics and so coordinate systems are not a problem there. Read more here |
Beta Was this translation helpful? Give feedback.
-
Thanks for the previous comments and help! I learnt a lot and am having a second try to clarify my question: I came across a similar question https://groups.google.com/g/scitools-iris/c/m5B2752zRjQ So I was now wondering 1) if it's technically possible to do the last bit of re-rotating the lat/lon global grid onto the target rotated pole grid with iris? I know there is iris.analysis.cartography.rotate_pole, I guess this will do the work? Thanks in adcance for any of your suggestions and help! |
Beta Was this translation helpful? Give feedback.
-
Hi,
Just wondered if it's possible to perform conservative interpolation for global grid with regular latitude/longitude onto regional rotated pole grid with grid_latitude/grid_longitude with iris?
I just had errors when trying
ocube = globalcube.regrid(regionalgrid, iris.analysis.AreaWeighted())
error: The horizontal grid coordinates of both the source and grid cubes must have the same coordinate system.
print(regionalgrid.coord_system())
RotatedGeogCS(39.59999847412109, 195.0, ellipsoid=GeogCS(6371229.0))
print(globalgrid.coord_system())
GeogCS(6371229.0)
I found this description on iris website:
One of the key limitations of the AreaWeighted regridding scheme is that the two input grids must be defined in the same coordinate system as each other. Both input grids must also contain monotonic, bounded, 1D spatial coordinates.
So my question was: is this possible to convert global grid to the regional rotated pole grid to make iris.analysis.AreaWeighted() works? or any suggestions on doing this conservative interpolation? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions