Philip Chmielowiec
Philip Chmielowiec
This relates to #725 and seems to be a duplicate of #726 This is a pretty high priority issue.
> What are you planning here? @rytam2 has run the E3SM model for her past work and has some data she'd like to visualize. It would be a one-shot example...
Possible code for a weighted face average: ```Python # (dask * numpy) / (numpy) ? (self.data * self.uxgrid.face_areas) / self.uxgrid.face_areas.sum()
@hongyuchen1030 I'm putting this on pause considering the broader redesign we're doing with our geometry routines.
There's some discussion about this in #840 Do you have a dataset example that is in a different projection I could use for testing?
@rajeeja @aaronzedwick Can you check if we can close this?
This appears to be due to how we represent the boundaries. We connect the corners of the boundaries and treat it as a GCA, which differs from how the true...
Hi @mgrover1 There are a few ways we could handle this, and this is with me making the assumption that the data provided can be easily converted to spherical or...
@mgrover1 @kmuehlbauer Thanks for following up!
The same behavior is observed with geoviews ```Python import geoviews as gv projection = ccrs.Orthographic(central_longitude=180) crs = ccrs.PlateCarree(central_longitude=180) gv.Path(gdf_180_lon, crs=crs).opts(projection=projection) ```