├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── SECURITY.md ├── codecov.yml ├── dependabot.yaml ├── release.yaml └── workflows │ ├── _build.yaml │ ├── _build_doc.yaml │ ├── _codecov.yaml │ ├── _codeql.yaml │ ├── _pre_commit.yaml │ ├── _pypi_publish.yaml │ ├── _pypi_test_publish.yaml │ ├── _test.yaml │ ├── cicd.yaml │ ├── dependabot_auto_approve.yaml │ └── scorecard.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── CITATION ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── cmethods ├── __init__.py ├── core.py ├── distribution.py ├── scaling.py ├── static.py ├── types.py └── utils.py ├── doc ├── Makefile ├── _static │ └── images │ │ ├── biasCdiagram.png │ │ ├── dm-doy-plot.png │ │ ├── qm-cdf-plot-1.png │ │ └── qm-cdf-plot-2.png ├── cli.rst ├── cmethods.rst ├── conf.py ├── getting_started.rst ├── index.rst ├── introduction.rst ├── issues.rst ├── license.rst ├── links.rst ├── make.bat ├── methods.rst └── requirements.txt ├── examples ├── examples.ipynb ├── input_data │ ├── control.nc │ ├── observations.nc │ └── scenario.nc └── requirements.txt ├── pyproject.toml ├── requirements-dev.txt ├── setup.py └── tests ├── README.rst ├── __init__.py ├── conftest.py ├── fixture ├── precipitation_obsh.zarr │ ├── .zattrs │ ├── .zgroup │ ├── .zmetadata │ ├── lat │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── lon │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── pr │ │ ├── .zarray │ │ ├── .zattrs │ │ ├── 0.0.0 │ │ ├── 0.1.0 │ │ ├── 1.0.0 │ │ └── 1.1.0 │ └── time │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs ├── precipitation_obsp.zarr │ ├── .zattrs │ ├── .zgroup │ ├── .zmetadata │ ├── lat │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── lon │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── pr │ │ ├── .zarray │ │ ├── .zattrs │ │ ├── 0.0.0 │ │ ├── 0.1.0 │ │ ├── 1.0.0 │ │ └── 1.1.0 │ └── time │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs ├── precipitation_simh.zarr │ ├── .zattrs │ ├── .zgroup │ ├── .zmetadata │ ├── lat │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── lon │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── pr │ │ ├── .zarray │ │ ├── .zattrs │ │ ├── 0.0.0 │ │ ├── 0.1.0 │ │ ├── 1.0.0 │ │ └── 1.1.0 │ └── time │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs ├── precipitation_simp.zarr │ ├── .zattrs │ ├── .zgroup │ ├── .zmetadata │ ├── lat │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── lon │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── pr │ │ ├── .zarray │ │ ├── .zattrs │ │ ├── 0.0.0 │ │ ├── 0.1.0 │ │ ├── 1.0.0 │ │ └── 1.1.0 │ └── time │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs ├── temperature_obsh.zarr │ ├── .zattrs │ ├── .zgroup │ ├── .zmetadata │ ├── lat │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── lon │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── tas │ │ ├── .zarray │ │ ├── .zattrs │ │ ├── 0.0.0 │ │ ├── 0.1.0 │ │ ├── 1.0.0 │ │ └── 1.1.0 │ └── time │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs ├── temperature_obsp.zarr │ ├── .zattrs │ ├── .zgroup │ ├── .zmetadata │ ├── lat │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── lon │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── tas │ │ ├── .zarray │ │ ├── .zattrs │ │ ├── 0.0.0 │ │ ├── 0.1.0 │ │ ├── 1.0.0 │ │ └── 1.1.0 │ └── time │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs ├── temperature_simh.zarr │ ├── .zattrs │ ├── .zgroup │ ├── .zmetadata │ ├── lat │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── lon │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── tas │ │ ├── .zarray │ │ ├── .zattrs │ │ ├── 0.0.0 │ │ ├── 0.1.0 │ │ ├── 1.0.0 │ │ └── 1.1.0 │ └── time │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs └── temperature_simp.zarr │ ├── .zattrs │ ├── .zgroup │ ├── .zmetadata │ ├── lat │ ├── 0 │ ├── .zarray │ └── .zattrs │ ├── lon │ ├── 0 │ ├── .zarray │ └── .zattrs │ ├── tas │ ├── .zarray │ ├── .zattrs │ ├── 0.0.0 │ ├── 0.1.0 │ ├── 1.0.0 │ └── 1.1.0 │ └── time │ ├── 0 │ ├── .zarray │ └── .zattrs ├── helper.py ├── test_cli.py ├── test_methods.py ├── test_methods_different_input_shape.py ├── test_misc.py ├── test_utils.py └── test_zarr_dask_compatibility.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @btschwertfeger 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/release.yaml -------------------------------------------------------------------------------- /.github/workflows/_build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/_build.yaml -------------------------------------------------------------------------------- /.github/workflows/_build_doc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/_build_doc.yaml -------------------------------------------------------------------------------- /.github/workflows/_codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/_codecov.yaml -------------------------------------------------------------------------------- /.github/workflows/_codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/_codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/_pre_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/_pre_commit.yaml -------------------------------------------------------------------------------- /.github/workflows/_pypi_publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/_pypi_publish.yaml -------------------------------------------------------------------------------- /.github/workflows/_pypi_test_publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/_pypi_test_publish.yaml -------------------------------------------------------------------------------- /.github/workflows/_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/_test.yaml -------------------------------------------------------------------------------- /.github/workflows/cicd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/cicd.yaml -------------------------------------------------------------------------------- /.github/workflows/dependabot_auto_approve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/dependabot_auto_approve.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/CITATION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/README.md -------------------------------------------------------------------------------- /cmethods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/cmethods/__init__.py -------------------------------------------------------------------------------- /cmethods/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/cmethods/core.py -------------------------------------------------------------------------------- /cmethods/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/cmethods/distribution.py -------------------------------------------------------------------------------- /cmethods/scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/cmethods/scaling.py -------------------------------------------------------------------------------- /cmethods/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/cmethods/static.py -------------------------------------------------------------------------------- /cmethods/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/cmethods/types.py -------------------------------------------------------------------------------- /cmethods/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/cmethods/utils.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/images/biasCdiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/_static/images/biasCdiagram.png -------------------------------------------------------------------------------- /doc/_static/images/dm-doy-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/_static/images/dm-doy-plot.png -------------------------------------------------------------------------------- /doc/_static/images/qm-cdf-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/_static/images/qm-cdf-plot-1.png -------------------------------------------------------------------------------- /doc/_static/images/qm-cdf-plot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/_static/images/qm-cdf-plot-2.png -------------------------------------------------------------------------------- /doc/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/cli.rst -------------------------------------------------------------------------------- /doc/cmethods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/cmethods.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/getting_started.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/introduction.rst -------------------------------------------------------------------------------- /doc/issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/issues.rst -------------------------------------------------------------------------------- /doc/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/license.rst -------------------------------------------------------------------------------- /doc/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/links.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/methods.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /examples/examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/examples/examples.ipynb -------------------------------------------------------------------------------- /examples/input_data/control.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/examples/input_data/control.nc -------------------------------------------------------------------------------- /examples/input_data/observations.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/examples/input_data/observations.nc -------------------------------------------------------------------------------- /examples/input_data/scenario.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/examples/input_data/scenario.nc -------------------------------------------------------------------------------- /examples/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | netCDF4 3 | python-cmethods 4 | xarray 5 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/.zmetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/.zmetadata -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/lat/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/lat/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/lat/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/lon/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/lon/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/lon/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/pr/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/pr/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/pr/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/pr/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/pr/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/pr/0.0.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/pr/0.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/pr/0.1.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/pr/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/pr/1.0.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/pr/1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/pr/1.1.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/time/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/time/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsh.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsh.zarr/time/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/.zmetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/.zmetadata -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/lat/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/lat/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/lat/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/lon/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/lon/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/lon/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/pr/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/pr/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/pr/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/pr/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/pr/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/pr/0.0.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/pr/0.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/pr/0.1.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/pr/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/pr/1.0.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/pr/1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/pr/1.1.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/time/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/time/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_obsp.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_obsp.zarr/time/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/.zmetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/.zmetadata -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/lat/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/lat/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/lat/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/lon/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/lon/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/lon/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/pr/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/pr/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/pr/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/pr/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/pr/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/pr/0.0.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/pr/0.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/pr/0.1.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/pr/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/pr/1.0.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/pr/1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/pr/1.1.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/time/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/time/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_simh.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simh.zarr/time/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/.zmetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/.zmetadata -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/lat/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/lat/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/lat/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/lon/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/lon/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/lon/0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/pr/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/pr/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/pr/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/pr/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/pr/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/pr/0.0.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/pr/0.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/pr/0.1.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/pr/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/pr/1.0.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/pr/1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/pr/1.1.0 -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/time/.zarray -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/time/.zattrs -------------------------------------------------------------------------------- /tests/fixture/precipitation_simp.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/precipitation_simp.zarr/time/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/.zmetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/.zmetadata -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/lat/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/lat/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/lat/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/lon/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/lon/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/lon/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/tas/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/tas/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/tas/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/tas/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/tas/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/tas/0.0.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/tas/0.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/tas/0.1.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/tas/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/tas/1.0.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/tas/1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/tas/1.1.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/time/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/time/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_obsh.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsh.zarr/time/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/.zmetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/.zmetadata -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/lat/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/lat/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/lat/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/lon/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/lon/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/lon/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/tas/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/tas/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/tas/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/tas/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/tas/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/tas/0.0.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/tas/0.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/tas/0.1.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/tas/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/tas/1.0.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/tas/1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/tas/1.1.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/time/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/time/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_obsp.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_obsp.zarr/time/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/.zmetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/.zmetadata -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/lat/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/lat/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/lat/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/lon/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/lon/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/lon/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/tas/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/tas/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/tas/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/tas/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/tas/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/tas/0.0.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/tas/0.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/tas/0.1.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/tas/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/tas/1.0.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/tas/1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/tas/1.1.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/time/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/time/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_simh.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simh.zarr/time/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/.zmetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/.zmetadata -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/lat/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/lat/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/lat/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/lon/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/lon/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/lon/0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/tas/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/tas/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/tas/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/tas/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/tas/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/tas/0.0.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/tas/0.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/tas/0.1.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/tas/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/tas/1.0.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/tas/1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/tas/1.1.0 -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/time/.zarray -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/time/.zattrs -------------------------------------------------------------------------------- /tests/fixture/temperature_simp.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/fixture/temperature_simp.zarr/time/0 -------------------------------------------------------------------------------- /tests/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/helper.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/test_methods.py -------------------------------------------------------------------------------- /tests/test_methods_different_input_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/test_methods_different_input_shape.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_zarr_dask_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btschwertfeger/python-cmethods/HEAD/tests/test_zarr_dask_compatibility.py --------------------------------------------------------------------------------