├── .gitignore ├── .pylintrc ├── Example of how to use our precomputed landcover.ipynb ├── README.md ├── SECURITY.md ├── TODO.md ├── azure-pipelines.yml ├── data └── README.md ├── environment.yml ├── environment_precise.yml ├── figures ├── landing_page.png └── web_application.png ├── server.py ├── tests ├── test_fiona.py ├── test_fiona2.py ├── test_rasterio_warp.py └── test_record_correction.py ├── training ├── __init__.py ├── models │ ├── __init__.py │ ├── base_network.py │ ├── fcn.py │ ├── unet.py │ └── unet_solar.py └── train_unsupervised.py ├── utils ├── cogify.py ├── create_basemaps_and_vrts.py ├── create_fishnet_polygons.py ├── create_naip_basemap.py ├── create_raster_preview.py ├── create_shapefile_from_files.py ├── create_spatial_index.py ├── create_tile_thumbnails.sh ├── get_leaflet_bounds_from_raster.py ├── intersecting_crop.py ├── reproject_data.py └── run_gdal2tiles_looped.py ├── web_tool ├── Checkpoints.py ├── DataLoader.py ├── DataLoaderAbstract.py ├── Datasets.py ├── Heatmap.py ├── ModelSessionAbstract.py ├── ModelSessionKerasExample.py ├── ModelSessionPyTorchCycle.py ├── ModelSessionPyTorchExample.py ├── ModelSessionPyTorchSegmentationModel.py ├── ModelSessionPytorchSolar.py ├── ModelSessionRPC.py ├── ModelSessionRandomForest.py ├── Models.py ├── NOTES.md ├── ServerModelsTorchSmoothing.py ├── Session.py ├── SessionHandler.py ├── Utils.py ├── __init__.py ├── css │ ├── bootstrap.min.css │ ├── images │ │ ├── Built.png │ │ ├── Field.png │ │ ├── Forest.png │ │ ├── Microsoft_logo.png │ │ ├── Water.png │ │ ├── bg-map-widescreen.png │ │ ├── bg-map.png │ │ ├── highres_world.jpg │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet-areaselect.css │ ├── leaflet-sidebar.css │ ├── leaflet-sidebar.min.css │ ├── leaflet-slider.css │ ├── leaflet.css │ ├── login.css │ ├── main.css │ └── noty.css ├── datasets.json ├── endpoints.js ├── index.html ├── js │ ├── bootstrap.bundle.min.js │ ├── components.js │ ├── globals.js │ ├── handlers.js │ ├── jquery-3.3.1.min.js │ ├── jscolor.js │ ├── leaflet-areaselect.js │ ├── leaflet-sidebar.min.js │ ├── leaflet-slider.js │ ├── leaflet.filelayer.js │ ├── leaflet.js │ ├── login.js │ ├── main.js │ ├── noty.js │ └── utils.js ├── landing_page.html ├── models.json ├── test.html └── views │ ├── authorized.tpl │ ├── background-image-info.txt │ ├── error.tpl │ ├── front_page.tpl │ ├── layout.tpl │ ├── not_authorized.tpl │ └── redirecting.tpl └── worker.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/.pylintrc -------------------------------------------------------------------------------- /Example of how to use our precomputed landcover.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/Example of how to use our precomputed landcover.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/TODO.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/data/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/environment.yml -------------------------------------------------------------------------------- /environment_precise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/environment_precise.yml -------------------------------------------------------------------------------- /figures/landing_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/figures/landing_page.png -------------------------------------------------------------------------------- /figures/web_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/figures/web_application.png -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/server.py -------------------------------------------------------------------------------- /tests/test_fiona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/tests/test_fiona.py -------------------------------------------------------------------------------- /tests/test_fiona2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/tests/test_fiona2.py -------------------------------------------------------------------------------- /tests/test_rasterio_warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/tests/test_rasterio_warp.py -------------------------------------------------------------------------------- /tests/test_record_correction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/tests/test_record_correction.py -------------------------------------------------------------------------------- /training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /training/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /training/models/base_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/training/models/base_network.py -------------------------------------------------------------------------------- /training/models/fcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/training/models/fcn.py -------------------------------------------------------------------------------- /training/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/training/models/unet.py -------------------------------------------------------------------------------- /training/models/unet_solar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/training/models/unet_solar.py -------------------------------------------------------------------------------- /training/train_unsupervised.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/training/train_unsupervised.py -------------------------------------------------------------------------------- /utils/cogify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/cogify.py -------------------------------------------------------------------------------- /utils/create_basemaps_and_vrts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/create_basemaps_and_vrts.py -------------------------------------------------------------------------------- /utils/create_fishnet_polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/create_fishnet_polygons.py -------------------------------------------------------------------------------- /utils/create_naip_basemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/create_naip_basemap.py -------------------------------------------------------------------------------- /utils/create_raster_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/create_raster_preview.py -------------------------------------------------------------------------------- /utils/create_shapefile_from_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/create_shapefile_from_files.py -------------------------------------------------------------------------------- /utils/create_spatial_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/create_spatial_index.py -------------------------------------------------------------------------------- /utils/create_tile_thumbnails.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/create_tile_thumbnails.sh -------------------------------------------------------------------------------- /utils/get_leaflet_bounds_from_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/get_leaflet_bounds_from_raster.py -------------------------------------------------------------------------------- /utils/intersecting_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/intersecting_crop.py -------------------------------------------------------------------------------- /utils/reproject_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/reproject_data.py -------------------------------------------------------------------------------- /utils/run_gdal2tiles_looped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/utils/run_gdal2tiles_looped.py -------------------------------------------------------------------------------- /web_tool/Checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/Checkpoints.py -------------------------------------------------------------------------------- /web_tool/DataLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/DataLoader.py -------------------------------------------------------------------------------- /web_tool/DataLoaderAbstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/DataLoaderAbstract.py -------------------------------------------------------------------------------- /web_tool/Datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/Datasets.py -------------------------------------------------------------------------------- /web_tool/Heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/Heatmap.py -------------------------------------------------------------------------------- /web_tool/ModelSessionAbstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/ModelSessionAbstract.py -------------------------------------------------------------------------------- /web_tool/ModelSessionKerasExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/ModelSessionKerasExample.py -------------------------------------------------------------------------------- /web_tool/ModelSessionPyTorchCycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/ModelSessionPyTorchCycle.py -------------------------------------------------------------------------------- /web_tool/ModelSessionPyTorchExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/ModelSessionPyTorchExample.py -------------------------------------------------------------------------------- /web_tool/ModelSessionPyTorchSegmentationModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/ModelSessionPyTorchSegmentationModel.py -------------------------------------------------------------------------------- /web_tool/ModelSessionPytorchSolar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/ModelSessionPytorchSolar.py -------------------------------------------------------------------------------- /web_tool/ModelSessionRPC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/ModelSessionRPC.py -------------------------------------------------------------------------------- /web_tool/ModelSessionRandomForest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/ModelSessionRandomForest.py -------------------------------------------------------------------------------- /web_tool/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/Models.py -------------------------------------------------------------------------------- /web_tool/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/NOTES.md -------------------------------------------------------------------------------- /web_tool/ServerModelsTorchSmoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/ServerModelsTorchSmoothing.py -------------------------------------------------------------------------------- /web_tool/Session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/Session.py -------------------------------------------------------------------------------- /web_tool/SessionHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/SessionHandler.py -------------------------------------------------------------------------------- /web_tool/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/Utils.py -------------------------------------------------------------------------------- /web_tool/__init__.py: -------------------------------------------------------------------------------- 1 | ROOT_DIR = "web_tool" -------------------------------------------------------------------------------- /web_tool/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/bootstrap.min.css -------------------------------------------------------------------------------- /web_tool/css/images/Built.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/Built.png -------------------------------------------------------------------------------- /web_tool/css/images/Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/Field.png -------------------------------------------------------------------------------- /web_tool/css/images/Forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/Forest.png -------------------------------------------------------------------------------- /web_tool/css/images/Microsoft_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/Microsoft_logo.png -------------------------------------------------------------------------------- /web_tool/css/images/Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/Water.png -------------------------------------------------------------------------------- /web_tool/css/images/bg-map-widescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/bg-map-widescreen.png -------------------------------------------------------------------------------- /web_tool/css/images/bg-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/bg-map.png -------------------------------------------------------------------------------- /web_tool/css/images/highres_world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/highres_world.jpg -------------------------------------------------------------------------------- /web_tool/css/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/layers-2x.png -------------------------------------------------------------------------------- /web_tool/css/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/layers.png -------------------------------------------------------------------------------- /web_tool/css/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/marker-icon-2x.png -------------------------------------------------------------------------------- /web_tool/css/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/marker-icon.png -------------------------------------------------------------------------------- /web_tool/css/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/images/marker-shadow.png -------------------------------------------------------------------------------- /web_tool/css/leaflet-areaselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/leaflet-areaselect.css -------------------------------------------------------------------------------- /web_tool/css/leaflet-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/leaflet-sidebar.css -------------------------------------------------------------------------------- /web_tool/css/leaflet-sidebar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/leaflet-sidebar.min.css -------------------------------------------------------------------------------- /web_tool/css/leaflet-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/leaflet-slider.css -------------------------------------------------------------------------------- /web_tool/css/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/leaflet.css -------------------------------------------------------------------------------- /web_tool/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/login.css -------------------------------------------------------------------------------- /web_tool/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/main.css -------------------------------------------------------------------------------- /web_tool/css/noty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/css/noty.css -------------------------------------------------------------------------------- /web_tool/datasets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/datasets.json -------------------------------------------------------------------------------- /web_tool/endpoints.js: -------------------------------------------------------------------------------- 1 | var SERVERS = [ 2 | {"url": "http://localhost:8080/"}, 3 | ]; 4 | -------------------------------------------------------------------------------- /web_tool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/index.html -------------------------------------------------------------------------------- /web_tool/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /web_tool/js/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/components.js -------------------------------------------------------------------------------- /web_tool/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/globals.js -------------------------------------------------------------------------------- /web_tool/js/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/handlers.js -------------------------------------------------------------------------------- /web_tool/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /web_tool/js/jscolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/jscolor.js -------------------------------------------------------------------------------- /web_tool/js/leaflet-areaselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/leaflet-areaselect.js -------------------------------------------------------------------------------- /web_tool/js/leaflet-sidebar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/leaflet-sidebar.min.js -------------------------------------------------------------------------------- /web_tool/js/leaflet-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/leaflet-slider.js -------------------------------------------------------------------------------- /web_tool/js/leaflet.filelayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/leaflet.filelayer.js -------------------------------------------------------------------------------- /web_tool/js/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/leaflet.js -------------------------------------------------------------------------------- /web_tool/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/login.js -------------------------------------------------------------------------------- /web_tool/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/main.js -------------------------------------------------------------------------------- /web_tool/js/noty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/noty.js -------------------------------------------------------------------------------- /web_tool/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/js/utils.js -------------------------------------------------------------------------------- /web_tool/landing_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/landing_page.html -------------------------------------------------------------------------------- /web_tool/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/models.json -------------------------------------------------------------------------------- /web_tool/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/test.html -------------------------------------------------------------------------------- /web_tool/views/authorized.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/views/authorized.tpl -------------------------------------------------------------------------------- /web_tool/views/background-image-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/views/background-image-info.txt -------------------------------------------------------------------------------- /web_tool/views/error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/views/error.tpl -------------------------------------------------------------------------------- /web_tool/views/front_page.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/views/front_page.tpl -------------------------------------------------------------------------------- /web_tool/views/layout.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/views/layout.tpl -------------------------------------------------------------------------------- /web_tool/views/not_authorized.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/views/not_authorized.tpl -------------------------------------------------------------------------------- /web_tool/views/redirecting.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/web_tool/views/redirecting.tpl -------------------------------------------------------------------------------- /worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/landcover/HEAD/worker.py --------------------------------------------------------------------------------