regridding NEMO outputs with UGRID #5172
-
Hi, I am trying to regrid NEMO outputs (irregular grid) on a regular grid to make some nice zonal average plots with iris. So i ended up trying to use iris-esmf-regrid which sounds like exactly what i need, all functions to regrid from unstructured to regular grid are there.
but here again, iris struggles to get the mesh from the netcdf file. In the end, i am not sure if this UGRID functions can be used with NEMO nc files, Huge thanks in advance for your help! Best regards, Julien. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @jupalm, thanks for getting in touch! Here are the regridders that can take curvilinear grids (like NEMO/ORCA) as inputs:
A mesh, usually under the UGRID specification, is a different concept to a curvilinear grid - you do not need to use Mesh handlingiris-esmf-regrid also has a mesh-specific regridder - |
Beta Was this translation helpful? Give feedback.
Hi @jupalm, thanks for getting in touch!
Here are the regridders that can take curvilinear grids (like NEMO/ORCA) as inputs:
iris.analysis.PointInCell
- handles anything 'unstructured', including curvilinear gridsiris.analysis.UnstructuredNearest
- handles anything 'unstructured', including curvilinear gridsesmf_regrid.schemes.ESMFAreaWeighted
- handles rectilinear or curvilinear gridsA mesh, usually under the UGRID specification, is a different concept to a curvilinear grid - you do not need to use
PARSE_UGRID_ON_LOAD
for any of the regridders above; they will all operate on yourCube
when loaded normally.Mesh handling
iris-esmf-regrid also has a mesh-specific regridder -
esmf_regr…