gitextract_o9tiakx3/ ├── .github/ │ └── workflows/ │ ├── python-publish.yml │ └── python-test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEV_DOCS.md ├── LICENSE ├── README.md ├── conda-recipe/ │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── docs/ │ ├── Makefile │ ├── make.bat │ ├── requirements-docs.txt │ └── source/ │ ├── about.rst │ ├── acknowledgements.rst │ ├── advanced_uses.rst │ ├── change_log.rst │ ├── conf.py │ ├── contribution.rst │ ├── geo.rst │ ├── how_to_use.rst │ ├── index.rst │ ├── installation.rst │ └── license.rst ├── geo/ │ ├── Calculation_gdal.py │ ├── Geoserver.py │ ├── Style.py │ ├── __init__.py │ ├── __version__.py │ └── supports.py ├── requirements.txt ├── requirements_dev.txt ├── requirements_style.txt ├── setup.cfg ├── setup.py └── tests/ ├── .env_template ├── __init__.py ├── common.py ├── data/ │ ├── countries-test.gpkg │ ├── sample_geotiff.tif │ └── tos_O1_2001-2002.nc ├── docker-compose.yaml ├── test_geoserver.py ├── test_layergroup.py └── test_path_fix.py