├── .all-contributorsrc ├── .bumpversion.cfg ├── .dockerignore ├── .github └── workflows │ ├── ghcr-release.yaml │ ├── plots.yml │ ├── release.yaml │ └── workflows.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .ruff.toml ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── .readthedocs-custom-steps.yml └── requirements.txt ├── environment.yml ├── mkdocs.yml ├── notebooks └── load_and_plot_HRV_UK_Zarr_from_GCS.ipynb ├── pydoc-markdown.yml ├── raw └── __init__.py ├── requirements.txt ├── satip ├── __init__.py ├── app.py ├── constants.py ├── data_store.py ├── eumetsat.py ├── filenames.py ├── geospatial.py ├── scale_to_zero_to_one.py ├── serialize.py └── utils.py ├── scripts ├── convert_native_to_zarr_modal.py ├── extend_gcp_zarr.py ├── generate_test_plots.py ├── process_monthly_zarrs.py └── read_and_combine_satellite.py ├── setup.py └── tests ├── integration_test └── test_integration_app.py ├── test_utils.py └── unit_test ├── test_filenames.py ├── test_unit_eumetsat.py └── test_unit_scale_to_zero_to_one.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/ghcr-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.github/workflows/ghcr-release.yaml -------------------------------------------------------------------------------- /.github/workflows/plots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.github/workflows/plots.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.github/workflows/workflows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/.ruff.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/README.md -------------------------------------------------------------------------------- /docs/.readthedocs-custom-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/docs/.readthedocs-custom-steps.yml -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/environment.yml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /notebooks/load_and_plot_HRV_UK_Zarr_from_GCS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/notebooks/load_and_plot_HRV_UK_Zarr_from_GCS.ipynb -------------------------------------------------------------------------------- /pydoc-markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/pydoc-markdown.yml -------------------------------------------------------------------------------- /raw/__init__.py: -------------------------------------------------------------------------------- 1 | """ Raw data files get stored here """ 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/requirements.txt -------------------------------------------------------------------------------- /satip/__init__.py: -------------------------------------------------------------------------------- 1 | # noqa: D104 2 | 3 | __version__ = "2.12.41" 4 | -------------------------------------------------------------------------------- /satip/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/satip/app.py -------------------------------------------------------------------------------- /satip/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/satip/constants.py -------------------------------------------------------------------------------- /satip/data_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/satip/data_store.py -------------------------------------------------------------------------------- /satip/eumetsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/satip/eumetsat.py -------------------------------------------------------------------------------- /satip/filenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/satip/filenames.py -------------------------------------------------------------------------------- /satip/geospatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/satip/geospatial.py -------------------------------------------------------------------------------- /satip/scale_to_zero_to_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/satip/scale_to_zero_to_one.py -------------------------------------------------------------------------------- /satip/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/satip/serialize.py -------------------------------------------------------------------------------- /satip/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/satip/utils.py -------------------------------------------------------------------------------- /scripts/convert_native_to_zarr_modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/scripts/convert_native_to_zarr_modal.py -------------------------------------------------------------------------------- /scripts/extend_gcp_zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/scripts/extend_gcp_zarr.py -------------------------------------------------------------------------------- /scripts/generate_test_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/scripts/generate_test_plots.py -------------------------------------------------------------------------------- /scripts/process_monthly_zarrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/scripts/process_monthly_zarrs.py -------------------------------------------------------------------------------- /scripts/read_and_combine_satellite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/scripts/read_and_combine_satellite.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/setup.py -------------------------------------------------------------------------------- /tests/integration_test/test_integration_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/tests/integration_test/test_integration_app.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/unit_test/test_filenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/tests/unit_test/test_filenames.py -------------------------------------------------------------------------------- /tests/unit_test/test_unit_eumetsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/tests/unit_test/test_unit_eumetsat.py -------------------------------------------------------------------------------- /tests/unit_test/test_unit_scale_to_zero_to_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/Satip/HEAD/tests/unit_test/test_unit_scale_to_zero_to_one.py --------------------------------------------------------------------------------