Replies: 1 comment
-
One way to regrid the unstructured data is by using the
to perform a first order conservative regridding to a regular 0.25 deg Gaussian grid. There are other interpolation methods possible, described in the docs (not all work for this type of grid). Another neat feature is that you can also store the computed grid weights separately, allowing for fast regridding of subsequent files sharing the same grid. For conservative regridding this would look like:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have some variables from the CAM model on the unstructured
ne120_t12
grid and would like to regrid them to a0.25 deg x 0.25 deg
rectilinearlon/lat
grid (just want to visualize them). This is the first time I am working with CAM output. How does one go about doing this?[Edit: I have used the
regrid
function fromxesmf
before for moving between two rectilinear grids but not from unstructured -> rectilinear]Beta Was this translation helpful? Give feedback.
All reactions