UXARRAY / uxarray

Xarray extension for unstructured climate and global weather data analysis and visualization.
https://uxarray.readthedocs.io/
Apache License 2.0
151 stars 31 forks source link

Weighted Mean Functionality #826

Open philipc2 opened 3 months ago

philipc2 commented 3 months ago

Add support for weighted means

Face Centered Variables

Edge Centered Variables

philipc2 commented 3 months ago

Possible code for a weighted face average:


# (dask * numpy) / (numpy) ? 
(self.data * self.uxgrid.face_areas) / self.uxgrid.face_areas.sum()