├── .coveragerc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── AUTHORS.rst ├── CHANGELOG.rst ├── LICENSE.txt ├── README.rst ├── docs ├── 5x5_cell_partitioning_cci.png ├── Makefile ├── _static │ └── .gitignore ├── authors.rst ├── changelog.rst ├── conf.py ├── env.yml ├── grid.rst ├── index.rst ├── license.rst ├── reading.rst ├── readme.rst └── varnames.rst ├── environment.yml ├── readthedocs.yml ├── setup.cfg ├── setup.py ├── src └── esa_cci_sm │ ├── __init__.py │ ├── grid.py │ ├── interface.py │ ├── metadata │ ├── esa_cci_sm_v03_ACTIVE.ini │ ├── esa_cci_sm_v03_COMBINED.ini │ ├── esa_cci_sm_v03_PASSIVE.ini │ ├── esa_cci_sm_v04_ACTIVE.ini │ ├── esa_cci_sm_v04_COMBINED.ini │ ├── esa_cci_sm_v04_PASSIVE.ini │ ├── esa_cci_sm_v05_ACTIVE.ini │ ├── esa_cci_sm_v05_COMBINED.ini │ ├── esa_cci_sm_v05_PASSIVE.ini │ ├── esa_cci_sm_v06_ACTIVE.ini │ ├── esa_cci_sm_v06_COMBINED.ini │ ├── esa_cci_sm_v06_PASSIVE.ini │ ├── esa_cci_sm_v07_ACTIVE.ini │ ├── esa_cci_sm_v07_COMBINED.ini │ ├── esa_cci_sm_v07_PASSIVE.ini │ ├── esa_cci_sm_v08_ACTIVE.ini │ ├── esa_cci_sm_v08_COMBINED.ini │ ├── esa_cci_sm_v08_PASSIVE.ini │ ├── esa_cci_sm_v09_ACTIVE.ini │ ├── esa_cci_sm_v09_COMBINED.ini │ └── esa_cci_sm_v09_PASSIVE.ini │ └── reshuffle.py └── tests ├── __init__.py ├── conftest.py ├── test_interface_v033.py ├── test_interface_v042.py ├── test_interface_v052.py └── test_reshuffle.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/README.rst -------------------------------------------------------------------------------- /docs/5x5_cell_partitioning_cci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/docs/5x5_cell_partitioning_cci.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | # Empty directory 2 | -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. _authors: 2 | .. include:: ../AUTHORS.rst 3 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. _changes: 2 | .. include:: ../CHANGELOG.rst 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/docs/env.yml -------------------------------------------------------------------------------- /docs/grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/docs/grid.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/reading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/docs/reading.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. _readme: 2 | .. include:: ../README.rst 3 | -------------------------------------------------------------------------------- /docs/varnames.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/docs/varnames.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/environment.yml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/setup.py -------------------------------------------------------------------------------- /src/esa_cci_sm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/__init__.py -------------------------------------------------------------------------------- /src/esa_cci_sm/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/grid.py -------------------------------------------------------------------------------- /src/esa_cci_sm/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/interface.py -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v03_ACTIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v03_ACTIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v03_COMBINED.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v03_COMBINED.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v03_PASSIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v03_PASSIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v04_ACTIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v04_ACTIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v04_COMBINED.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v04_COMBINED.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v04_PASSIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v04_PASSIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v05_ACTIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v05_ACTIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v05_COMBINED.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v05_COMBINED.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v05_PASSIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v05_PASSIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v06_ACTIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v06_ACTIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v06_COMBINED.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v06_COMBINED.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v06_PASSIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v06_PASSIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v07_ACTIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v07_ACTIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v07_COMBINED.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v07_COMBINED.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v07_PASSIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v07_PASSIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v08_ACTIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v08_ACTIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v08_COMBINED.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v08_COMBINED.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v08_PASSIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v08_PASSIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v09_ACTIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v09_ACTIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v09_COMBINED.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v09_COMBINED.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/metadata/esa_cci_sm_v09_PASSIVE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/metadata/esa_cci_sm_v09_PASSIVE.ini -------------------------------------------------------------------------------- /src/esa_cci_sm/reshuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/src/esa_cci_sm/reshuffle.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_interface_v033.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/tests/test_interface_v033.py -------------------------------------------------------------------------------- /tests/test_interface_v042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/tests/test_interface_v042.py -------------------------------------------------------------------------------- /tests/test_interface_v052.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/tests/test_interface_v052.py -------------------------------------------------------------------------------- /tests/test_reshuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-GEO/esa_cci_sm/HEAD/tests/test_reshuffle.py --------------------------------------------------------------------------------