Philip Chmielowiec
Philip Chmielowiec
> @erogluorhan -- Following up from our conversation in the Raijin meeting, here is my simple approach to zonal or meridional means. Not sure whether to put this here or...
@brianpm In addition to what @hongyuchen1030 mentioned, I'm curious if you've run this or tested the approach on any data? There doesn't appear to be any unstructured connectivity referenced in...
> This is on the (mental) to do list for geocat-comp as well. Excited to learn from you all if you get to it first! > > FWIW [xarray has...
Let's continue the discussion in https://github.com/ESCOMP/CAM/issues/468 We can keep this issue open for now, depending on what we cover above.
Hi @ahijevyc Can you try running the following? ```Python var.inverse_distance_weighted_remap(destination_obj=var.uxgrid).plot.polygon() ``` This should return a `UxDataArray` When you pass through the `UxDataArray` as the `destination_obj`, we are attempting to store...
You want to set `remap_to='face centers'` to have the result stored on each face. ```Python var.inverse_distance_weighted_remap(destination_obj=var.uxgrid, remap_to='face centers').plot.polygon() ```
I was able to get this generated on Casper. ```Python uxds["landmask"].remap.inverse_distance_weighted(destination_obj=uxds.uxgrid, remap_to='face centers').plot.polygons() ``` Can you give that a try?
It looks like the remapping isn't actually doing anything though. Looking into it further.
> Do you have a workaround for this? > […](#) > On Mon, May 6, 2024 at 5:36 PM Philip Chmielowiec ***@***.***> wrote: It appears that the remapping is functioning...
@aaronzedwick > I noticed the change to UxDataset when trying to plot a smoothed UxDataArray. See code below. This is related to what we talked about on Monday when we...