├── .github ├── ISSUE_TEMPLATE │ ├── FEATURE_REQUEST_TEMPLATE.md │ └── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitlab-ci.yml ├── .readthedocs.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── conda_env.yml ├── docker ├── Dockerfile ├── README.md ├── docker-compose.yml └── requirements.txt ├── docs ├── Makefile ├── README.md ├── _static │ ├── docker_eumap.gif │ ├── logo.png │ ├── pydata-custom.css │ └── readthedocs-custom.css ├── _templates │ ├── custom-class-template.rst │ └── custom-module-template.rst ├── api.rst ├── conf.py ├── img │ ├── mit.svg │ ├── plot_output.png │ ├── scikit-map_big.png │ ├── scikit-map_favicon.png │ ├── scikit-map_small.png │ └── workflow.png ├── index.rst ├── notebooks │ ├── 01-raster-data.ipynb │ └── 02-gapfilling.ipynb ├── requirements.txt └── tutorials.rst ├── gen_toy.py ├── logo ├── banner_github.png ├── print_icon.eps ├── print_icon_white.eps ├── print_logo.eps ├── print_logo_white.eps ├── profile_github.png ├── profile_twitter.png ├── web_favicon.png ├── web_icon.png ├── web_icon_white.png ├── web_logo.png └── web_logo_white.png ├── setup.cfg ├── setup.py ├── skmap ├── __init__.py ├── data │ ├── __init__.py │ ├── eo.py │ ├── toy.py │ └── toy │ │ ├── ndvi │ │ ├── filled │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20141202_20150320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20150321_20150624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20150625_20150912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20150913_20151201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20151202_20160320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20160321_20160624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20160625_20160912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20160913_20161201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20161202_20170320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20170321_20170624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20170625_20170912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20170913_20171201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20171202_20180320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20180321_20180624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20180625_20180912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20180913_20181201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20181202_20190320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20190321_20190624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20190625_20190912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20190913_20191201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20191202_20200320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20200321_20200624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20200625_20200912_nl_epsg.3035_v20230720.tif │ │ │ └── ndvi_landsat.ard1_p50_30m_s_20200913_20201201_nl_epsg.3035_v20230720.tif │ │ └── gappy │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20141202_20150320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20150321_20150624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20150625_20150912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20150913_20151201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20151202_20160320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20160321_20160624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20160625_20160912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20160913_20161201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20161202_20170320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20170321_20170624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20170625_20170912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20170913_20171201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20171202_20180320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20180321_20180624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20180625_20180912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20180913_20181201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20181202_20190320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20190321_20190624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20190625_20190912_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20190913_20191201_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20191202_20200320_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20200321_20200624_nl_epsg.3035_v20230720.tif │ │ │ ├── ndvi_landsat.ard1_p50_30m_s_20200625_20200912_nl_epsg.3035_v20230720.tif │ │ │ └── ndvi_landsat.ard1_p50_30m_s_20200913_20201201_nl_epsg.3035_v20230720.tif │ │ ├── samples │ │ └── samples.gpkg │ │ ├── static │ │ ├── elev.lowestmode_gedi.eml_mf_30m_s_20000101_20181231_nl_epsg.3035_v0.3.tif │ │ └── slope.percent_gedi.eml_m_30m_s_20000101_20181231_nl_epsg.3035_v0.3.tif │ │ └── swir1 │ │ ├── swir1_landsat.ard1_p50_30m_s_20141202_20150320_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20150321_20150624_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20150625_20150912_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20150913_20151201_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20151202_20160320_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20160321_20160624_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20160625_20160912_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20160913_20161201_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20161202_20170320_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20170321_20170624_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20170625_20170912_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20170913_20171201_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20171202_20180320_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20180321_20180624_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20180625_20180912_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20180913_20181201_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20181202_20190320_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20190321_20190624_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20190625_20190912_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20190913_20191201_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20191202_20200320_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20200321_20200624_nl_epsg.3035_v20230720.tif │ │ ├── swir1_landsat.ard1_p50_30m_s_20200625_20200912_nl_epsg.3035_v20230720.tif │ │ └── swir1_landsat.ard1_p50_30m_s_20200913_20201201_nl_epsg.3035_v20230720.tif ├── io │ ├── __init__.py │ ├── base.py │ └── process.py ├── mapper.py ├── misc.py ├── parallel │ ├── __init__.py │ ├── blocks.py │ └── utils.py ├── plotter.py └── qc.py ├── test.ipynb └── tests ├── __init__.py └── test_misc.py /.github/ISSUE_TEMPLATE/FEATURE_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/README.md -------------------------------------------------------------------------------- /conda_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/conda_env.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docker/requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_static/docker_eumap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/_static/docker_eumap.gif -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/pydata-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/_static/pydata-custom.css -------------------------------------------------------------------------------- /docs/_static/readthedocs-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/_static/readthedocs-custom.css -------------------------------------------------------------------------------- /docs/_templates/custom-class-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/_templates/custom-class-template.rst -------------------------------------------------------------------------------- /docs/_templates/custom-module-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/_templates/custom-module-template.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/img/mit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/img/mit.svg -------------------------------------------------------------------------------- /docs/img/plot_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/img/plot_output.png -------------------------------------------------------------------------------- /docs/img/scikit-map_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/img/scikit-map_big.png -------------------------------------------------------------------------------- /docs/img/scikit-map_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/img/scikit-map_favicon.png -------------------------------------------------------------------------------- /docs/img/scikit-map_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/img/scikit-map_small.png -------------------------------------------------------------------------------- /docs/img/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/img/workflow.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/notebooks/01-raster-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/notebooks/01-raster-data.ipynb -------------------------------------------------------------------------------- /docs/notebooks/02-gapfilling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/notebooks/02-gapfilling.ipynb -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/docs/tutorials.rst -------------------------------------------------------------------------------- /gen_toy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/gen_toy.py -------------------------------------------------------------------------------- /logo/banner_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/banner_github.png -------------------------------------------------------------------------------- /logo/print_icon.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/print_icon.eps -------------------------------------------------------------------------------- /logo/print_icon_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/print_icon_white.eps -------------------------------------------------------------------------------- /logo/print_logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/print_logo.eps -------------------------------------------------------------------------------- /logo/print_logo_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/print_logo_white.eps -------------------------------------------------------------------------------- /logo/profile_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/profile_github.png -------------------------------------------------------------------------------- /logo/profile_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/profile_twitter.png -------------------------------------------------------------------------------- /logo/web_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/web_favicon.png -------------------------------------------------------------------------------- /logo/web_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/web_icon.png -------------------------------------------------------------------------------- /logo/web_icon_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/web_icon_white.png -------------------------------------------------------------------------------- /logo/web_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/web_logo.png -------------------------------------------------------------------------------- /logo/web_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/logo/web_logo_white.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/setup.py -------------------------------------------------------------------------------- /skmap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/__init__.py -------------------------------------------------------------------------------- /skmap/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/__init__.py -------------------------------------------------------------------------------- /skmap/data/eo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/eo.py -------------------------------------------------------------------------------- /skmap/data/toy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy.py -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20141202_20150320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20141202_20150320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20150321_20150624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20150321_20150624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20150625_20150912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20150625_20150912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20150913_20151201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20150913_20151201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20151202_20160320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20151202_20160320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20160321_20160624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20160321_20160624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20160625_20160912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20160625_20160912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20160913_20161201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20160913_20161201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20161202_20170320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20161202_20170320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20170321_20170624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20170321_20170624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20170625_20170912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20170625_20170912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20170913_20171201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20170913_20171201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20171202_20180320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20171202_20180320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20180321_20180624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20180321_20180624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20180625_20180912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20180625_20180912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20180913_20181201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20180913_20181201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20181202_20190320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20181202_20190320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20190321_20190624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20190321_20190624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20190625_20190912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20190625_20190912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20190913_20191201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20190913_20191201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20191202_20200320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20191202_20200320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20200321_20200624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20200321_20200624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20200625_20200912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20200625_20200912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20200913_20201201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/filled/ndvi_landsat.ard1_p50_30m_s_20200913_20201201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20141202_20150320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20141202_20150320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20150321_20150624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20150321_20150624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20150625_20150912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20150625_20150912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20150913_20151201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20150913_20151201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20151202_20160320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20151202_20160320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20160321_20160624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20160321_20160624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20160625_20160912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20160625_20160912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20160913_20161201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20160913_20161201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20161202_20170320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20161202_20170320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20170321_20170624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20170321_20170624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20170625_20170912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20170625_20170912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20170913_20171201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20170913_20171201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20171202_20180320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20171202_20180320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20180321_20180624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20180321_20180624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20180625_20180912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20180625_20180912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20180913_20181201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20180913_20181201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20181202_20190320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20181202_20190320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20190321_20190624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20190321_20190624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20190625_20190912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20190625_20190912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20190913_20191201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20190913_20191201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20191202_20200320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20191202_20200320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20200321_20200624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20200321_20200624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20200625_20200912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20200625_20200912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20200913_20201201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/ndvi/gappy/ndvi_landsat.ard1_p50_30m_s_20200913_20201201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/samples/samples.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/samples/samples.gpkg -------------------------------------------------------------------------------- /skmap/data/toy/static/elev.lowestmode_gedi.eml_mf_30m_s_20000101_20181231_nl_epsg.3035_v0.3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/static/elev.lowestmode_gedi.eml_mf_30m_s_20000101_20181231_nl_epsg.3035_v0.3.tif -------------------------------------------------------------------------------- /skmap/data/toy/static/slope.percent_gedi.eml_m_30m_s_20000101_20181231_nl_epsg.3035_v0.3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/static/slope.percent_gedi.eml_m_30m_s_20000101_20181231_nl_epsg.3035_v0.3.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20141202_20150320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20141202_20150320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20150321_20150624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20150321_20150624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20150625_20150912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20150625_20150912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20150913_20151201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20150913_20151201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20151202_20160320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20151202_20160320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20160321_20160624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20160321_20160624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20160625_20160912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20160625_20160912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20160913_20161201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20160913_20161201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20161202_20170320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20161202_20170320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20170321_20170624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20170321_20170624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20170625_20170912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20170625_20170912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20170913_20171201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20170913_20171201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20171202_20180320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20171202_20180320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20180321_20180624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20180321_20180624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20180625_20180912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20180625_20180912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20180913_20181201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20180913_20181201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20181202_20190320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20181202_20190320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20190321_20190624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20190321_20190624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20190625_20190912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20190625_20190912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20190913_20191201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20190913_20191201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20191202_20200320_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20191202_20200320_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20200321_20200624_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20200321_20200624_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20200625_20200912_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20200625_20200912_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20200913_20201201_nl_epsg.3035_v20230720.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/data/toy/swir1/swir1_landsat.ard1_p50_30m_s_20200913_20201201_nl_epsg.3035_v20230720.tif -------------------------------------------------------------------------------- /skmap/io/__init__.py: -------------------------------------------------------------------------------- 1 | from .base import * -------------------------------------------------------------------------------- /skmap/io/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/io/base.py -------------------------------------------------------------------------------- /skmap/io/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/io/process.py -------------------------------------------------------------------------------- /skmap/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/mapper.py -------------------------------------------------------------------------------- /skmap/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/misc.py -------------------------------------------------------------------------------- /skmap/parallel/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Parallelization helpers 3 | """ 4 | from .utils import * 5 | -------------------------------------------------------------------------------- /skmap/parallel/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/parallel/blocks.py -------------------------------------------------------------------------------- /skmap/parallel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/parallel/utils.py -------------------------------------------------------------------------------- /skmap/plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/plotter.py -------------------------------------------------------------------------------- /skmap/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/skmap/qc.py -------------------------------------------------------------------------------- /test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/test.ipynb -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlandmap/scikit-map/HEAD/tests/test_misc.py --------------------------------------------------------------------------------