├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── client └── src │ ├── main │ ├── resources │ │ ├── browserconfig.xml │ │ ├── img │ │ │ └── ramps │ │ │ │ ├── blue-to-orange.png │ │ │ │ ├── blue-to-red.png │ │ │ │ ├── blue-to-yellow-to-red-heatmap.png │ │ │ │ ├── bold-land-use-qualitative.png │ │ │ │ ├── dark-red-to-yellow-heatmap.png │ │ │ │ ├── green-to-orange.png │ │ │ │ ├── green-to-red-orange.png │ │ │ │ ├── light-to-dark-green.png │ │ │ │ ├── light-to-dark-sunset.png │ │ │ │ ├── muted-terrain-qualitative.png │ │ │ │ ├── purple-to-dark-purple-to-white-heatmap.png │ │ │ │ └── yellow-to-red-heatmap.png │ │ ├── index-dev.html │ │ ├── index-prod.html │ │ ├── manifest.json │ │ ├── reset.css │ │ └── style.css │ └── scala │ │ └── geotrellis │ │ └── admin │ │ └── client │ │ ├── AppStyle.scala │ │ ├── Main.scala │ │ ├── SiteConfig.scala │ │ ├── circuit │ │ ├── Catalog.scala │ │ ├── Circuit.scala │ │ ├── Model.scala │ │ └── package.scala │ │ ├── components │ │ ├── Bootstrap.scala │ │ ├── BootstrapStyles.scala │ │ ├── JQuery.scala │ │ ├── map │ │ │ └── LeafletMap.scala │ │ ├── modal │ │ │ ├── ColorBreaksCount.scala │ │ │ ├── ColorOpacity.scala │ │ │ ├── ColorRampList.scala │ │ │ ├── LayerList.scala │ │ │ └── SettingsModal.scala │ │ ├── package.scala │ │ └── sidebar │ │ │ └── InfoPanel.scala │ │ ├── facades │ │ ├── JSOptionBuilder.scala │ │ ├── LeafletFacade.scala │ │ └── package.scala │ │ ├── package.scala │ │ └── routes │ │ └── GeotrellisAdminViewer.scala │ └── test │ └── scala │ └── sandbox │ └── circuit │ └── ActionHandlers.scala ├── deploy ├── client_entry.sh ├── favicons.tar.gz ├── favicons.zip ├── geotrellis-admin-client.dockerfile ├── geotrellis-admin-server.dockerfile └── nginx.conf ├── docker-compose.yml ├── project └── plugins.sbt ├── sbt ├── serve.sh ├── server └── src │ └── main │ └── scala │ └── geotrellis │ └── admin │ └── server │ ├── AdminActor.scala │ ├── Main.scala │ └── util │ ├── ColorRampMap.scala │ ├── Cors.scala │ ├── EmptyTile.scala │ └── KryoRegistration.scala ├── settings.conf ├── shared └── src │ └── main │ └── scala │ └── geotrellis │ └── admin │ └── shared │ └── package.scala └── static_build ├── bundle.js ├── package.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/README.md -------------------------------------------------------------------------------- /client/src/main/resources/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/browserconfig.xml -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/blue-to-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/blue-to-orange.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/blue-to-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/blue-to-red.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/blue-to-yellow-to-red-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/blue-to-yellow-to-red-heatmap.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/bold-land-use-qualitative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/bold-land-use-qualitative.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/dark-red-to-yellow-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/dark-red-to-yellow-heatmap.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/green-to-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/green-to-orange.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/green-to-red-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/green-to-red-orange.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/light-to-dark-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/light-to-dark-green.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/light-to-dark-sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/light-to-dark-sunset.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/muted-terrain-qualitative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/muted-terrain-qualitative.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/purple-to-dark-purple-to-white-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/purple-to-dark-purple-to-white-heatmap.png -------------------------------------------------------------------------------- /client/src/main/resources/img/ramps/yellow-to-red-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/img/ramps/yellow-to-red-heatmap.png -------------------------------------------------------------------------------- /client/src/main/resources/index-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/index-dev.html -------------------------------------------------------------------------------- /client/src/main/resources/index-prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/index-prod.html -------------------------------------------------------------------------------- /client/src/main/resources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/manifest.json -------------------------------------------------------------------------------- /client/src/main/resources/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/reset.css -------------------------------------------------------------------------------- /client/src/main/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/resources/style.css -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/AppStyle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/AppStyle.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/Main.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/SiteConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/SiteConfig.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/circuit/Catalog.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/circuit/Catalog.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/circuit/Circuit.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/circuit/Circuit.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/circuit/Model.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/circuit/Model.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/circuit/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/circuit/package.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/Bootstrap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/Bootstrap.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/BootstrapStyles.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/BootstrapStyles.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/JQuery.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/JQuery.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/map/LeafletMap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/map/LeafletMap.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/modal/ColorBreaksCount.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/modal/ColorBreaksCount.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/modal/ColorOpacity.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/modal/ColorOpacity.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/modal/ColorRampList.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/modal/ColorRampList.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/modal/LayerList.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/modal/LayerList.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/modal/SettingsModal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/modal/SettingsModal.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/package.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/components/sidebar/InfoPanel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/components/sidebar/InfoPanel.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/facades/JSOptionBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/facades/JSOptionBuilder.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/facades/LeafletFacade.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/facades/LeafletFacade.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/facades/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/facades/package.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/package.scala -------------------------------------------------------------------------------- /client/src/main/scala/geotrellis/admin/client/routes/GeotrellisAdminViewer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/main/scala/geotrellis/admin/client/routes/GeotrellisAdminViewer.scala -------------------------------------------------------------------------------- /client/src/test/scala/sandbox/circuit/ActionHandlers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/client/src/test/scala/sandbox/circuit/ActionHandlers.scala -------------------------------------------------------------------------------- /deploy/client_entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/deploy/client_entry.sh -------------------------------------------------------------------------------- /deploy/favicons.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/deploy/favicons.tar.gz -------------------------------------------------------------------------------- /deploy/favicons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/deploy/favicons.zip -------------------------------------------------------------------------------- /deploy/geotrellis-admin-client.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/deploy/geotrellis-admin-client.dockerfile -------------------------------------------------------------------------------- /deploy/geotrellis-admin-server.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/deploy/geotrellis-admin-server.dockerfile -------------------------------------------------------------------------------- /deploy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/deploy/nginx.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/sbt -------------------------------------------------------------------------------- /serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/serve.sh -------------------------------------------------------------------------------- /server/src/main/scala/geotrellis/admin/server/AdminActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/server/src/main/scala/geotrellis/admin/server/AdminActor.scala -------------------------------------------------------------------------------- /server/src/main/scala/geotrellis/admin/server/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/server/src/main/scala/geotrellis/admin/server/Main.scala -------------------------------------------------------------------------------- /server/src/main/scala/geotrellis/admin/server/util/ColorRampMap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/server/src/main/scala/geotrellis/admin/server/util/ColorRampMap.scala -------------------------------------------------------------------------------- /server/src/main/scala/geotrellis/admin/server/util/Cors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/server/src/main/scala/geotrellis/admin/server/util/Cors.scala -------------------------------------------------------------------------------- /server/src/main/scala/geotrellis/admin/server/util/EmptyTile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/server/src/main/scala/geotrellis/admin/server/util/EmptyTile.scala -------------------------------------------------------------------------------- /server/src/main/scala/geotrellis/admin/server/util/KryoRegistration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/server/src/main/scala/geotrellis/admin/server/util/KryoRegistration.scala -------------------------------------------------------------------------------- /settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/settings.conf -------------------------------------------------------------------------------- /shared/src/main/scala/geotrellis/admin/shared/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/shared/src/main/scala/geotrellis/admin/shared/package.scala -------------------------------------------------------------------------------- /static_build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/static_build/bundle.js -------------------------------------------------------------------------------- /static_build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/static_build/package.json -------------------------------------------------------------------------------- /static_build/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-admin/HEAD/static_build/webpack.config.js --------------------------------------------------------------------------------