gitextract_0jcmuyrd/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yaml │ ├── linting.yaml │ └── pypi.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierrc.toml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── binder/ │ └── environment.yml ├── ci/ │ ├── doc.yml │ ├── environment-upstream-dev.yml │ └── environment.yml ├── codecov.yml ├── doc/ │ ├── Makefile │ ├── changes.rst │ ├── conf.py │ ├── index.rst │ ├── installation.rst │ ├── internal_api.rst │ ├── large_problems_on_HPC.rst │ ├── limitations.rst │ ├── make.bat │ ├── notebooks/ │ │ ├── Backend.ipynb │ │ ├── Compare_algorithms.ipynb │ │ ├── Curvilinear_grid.ipynb │ │ ├── Dask.ipynb │ │ ├── Dataset.ipynb │ │ ├── Masking.ipynb │ │ ├── Pure_numpy.ipynb │ │ ├── Rectilinear_grid.ipynb │ │ ├── Reuse_regridder.ipynb │ │ ├── Spatial_Averaging.ipynb │ │ └── Using_LocStream.ipynb │ ├── other_tools.rst │ ├── releases.rst │ ├── requirements.txt │ ├── user_api.rst │ └── why.rst ├── pyproject.toml ├── readthedocs.yml ├── requirements.txt ├── setup.cfg └── xesmf/ ├── __init__.py ├── backend.py ├── data.py ├── frontend.py ├── smm.py ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_backend.py │ ├── test_frontend.py │ ├── test_oceanmodels.py │ ├── test_smm.py │ └── test_util.py └── util.py