NOAA-GFDL / xwmt

Python package for water mass transformation analysis that leverages xarray functionality
https://xwmt.readthedocs.io/
MIT License
7 stars 5 forks source link

Remove preprocessing and add documentation that describes the necessary format of the input dataset #15

Closed jetesdal closed 2 years ago

jetesdal commented 2 years ago

If preprocessing is not used the preparation of MOM6 would simply be: ds = xr.merge([ds_vars,ds_static]).drop_dims(['xq','yq']).reset_coords(drop=True).rename({'xh': 'x', 'yh': 'y','geolat': 'lat', 'geolon': 'lon'})

This is linked to issues #5 and #6.