├── .gitattributes ├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── Vagrantfile ├── deployment ├── README.md ├── ansible │ ├── group_vars │ │ └── all │ ├── playbook.yml │ ├── roles.yml │ └── roles │ │ ├── gt-chatta-demo.docker │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ │ └── gt-chatta-demo.environment │ │ └── tasks │ │ └── main.yml ├── terraform │ ├── cdn.tf │ ├── chatta-demo.tf │ ├── config.tf │ ├── dns.tf │ ├── firewall.tf │ ├── remote-state.tf │ ├── task-definitions │ │ └── chatta.json │ └── variables.tf └── vagrant │ └── cd_shared_folder.sh ├── docker-compose.ci.yml ├── docker-compose.geodocker.yml ├── docker-compose.test.yml ├── docker-compose.yml ├── geodocker ├── application.conf ├── application.geodocker.conf ├── backend-profiles.geodocker.json └── backend-profiles.json ├── scripts ├── cibuild ├── cipublish ├── console ├── deploy ├── infra ├── server ├── setup ├── test └── update └── service ├── .dockerignore ├── Dockerfile ├── Dockerfile.ingest ├── geotrellis ├── build.sbt ├── conf │ ├── backend-profiles.json │ ├── input.json │ ├── output-accumulo.json │ └── output.json ├── data │ └── arg_wm │ │ ├── DevelopedLand.tiff │ │ ├── ExampleOfWeightedSumOutput.tiff │ │ ├── FarmlandOrForestedLandsWithPrimeAgriculturalSoils.tiff │ │ ├── FarmlandWithoutPrimeAgriculturalSoils.tiff │ │ ├── ForestedLands.tiff │ │ ├── ImperviousSurfacesBarrenLandsOpenWater.tiff │ │ ├── NonWorkingProtectedOrPublicLands.tiff │ │ ├── PrimeAgriculturalSoilsNotForestedOrFarmland.tiff │ │ ├── PrivatelyOwnedWorkingLandsWithEasements.tiff │ │ ├── PublicallyOwnedWorkingLands.tiff │ │ ├── Wetlands.tiff │ │ └── mask.tiff ├── jvmopts-sample ├── project │ ├── build.properties │ └── plugins.sbt ├── sbt └── src │ └── main │ ├── resources │ └── application.conf │ └── scala │ └── geotrellis │ ├── chatta │ ├── ChattaIngest.scala │ ├── ChattaServiceRouter.scala │ ├── LazyLogging.scala │ ├── Main.scala │ ├── Model.scala │ ├── ModelSpark.scala │ ├── Projections.scala │ └── package.scala │ ├── kryo │ └── AvroRegistrator.scala │ └── services │ └── ColorRampMap.scala └── static ├── config.json ├── css ├── application.css ├── bootstrap-responsive.css ├── bootstrap-responsive.min.css ├── bootstrap.css ├── bootstrap.min.css ├── images │ ├── layers.png │ ├── spritesheet.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ └── ui-bg_highlight-soft_100_eeeeee_1x100.png ├── jquery-ui.css ├── leaflet.css ├── leaflet.draw.css ├── leaflet.draw.ie.css └── leaflet.ie.css ├── favicon.ico ├── img ├── 4-way-arrow.png ├── Thumbs.db ├── glyphicons-halflings-white.png ├── glyphicons-halflings.png ├── leaflet │ ├── layers.png │ ├── marker-icon.png │ ├── marker-icon@2x.png │ └── marker-shadow.png └── 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.html └── js ├── application.js ├── bootstrap.js ├── bootstrap.min.js ├── geojson.js ├── jquery-1.11.3.min.js ├── jquery-ui-1.10.0.min.js ├── leaflet-src.js ├── leaflet.draw.js └── leaflet.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/Vagrantfile -------------------------------------------------------------------------------- /deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/README.md -------------------------------------------------------------------------------- /deployment/ansible/group_vars/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/ansible/group_vars/all -------------------------------------------------------------------------------- /deployment/ansible/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/ansible/playbook.yml -------------------------------------------------------------------------------- /deployment/ansible/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/ansible/roles.yml -------------------------------------------------------------------------------- /deployment/ansible/roles/gt-chatta-demo.docker/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/ansible/roles/gt-chatta-demo.docker/meta/main.yml -------------------------------------------------------------------------------- /deployment/ansible/roles/gt-chatta-demo.docker/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/ansible/roles/gt-chatta-demo.docker/tasks/main.yml -------------------------------------------------------------------------------- /deployment/ansible/roles/gt-chatta-demo.environment/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/ansible/roles/gt-chatta-demo.environment/tasks/main.yml -------------------------------------------------------------------------------- /deployment/terraform/cdn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/terraform/cdn.tf -------------------------------------------------------------------------------- /deployment/terraform/chatta-demo.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/terraform/chatta-demo.tf -------------------------------------------------------------------------------- /deployment/terraform/config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/terraform/config.tf -------------------------------------------------------------------------------- /deployment/terraform/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/terraform/dns.tf -------------------------------------------------------------------------------- /deployment/terraform/firewall.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/terraform/firewall.tf -------------------------------------------------------------------------------- /deployment/terraform/remote-state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/terraform/remote-state.tf -------------------------------------------------------------------------------- /deployment/terraform/task-definitions/chatta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/terraform/task-definitions/chatta.json -------------------------------------------------------------------------------- /deployment/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/terraform/variables.tf -------------------------------------------------------------------------------- /deployment/vagrant/cd_shared_folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/deployment/vagrant/cd_shared_folder.sh -------------------------------------------------------------------------------- /docker-compose.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/docker-compose.ci.yml -------------------------------------------------------------------------------- /docker-compose.geodocker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/docker-compose.geodocker.yml -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /geodocker/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/geodocker/application.conf -------------------------------------------------------------------------------- /geodocker/application.geodocker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/geodocker/application.geodocker.conf -------------------------------------------------------------------------------- /geodocker/backend-profiles.geodocker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/geodocker/backend-profiles.geodocker.json -------------------------------------------------------------------------------- /geodocker/backend-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/geodocker/backend-profiles.json -------------------------------------------------------------------------------- /scripts/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/scripts/cibuild -------------------------------------------------------------------------------- /scripts/cipublish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/scripts/cipublish -------------------------------------------------------------------------------- /scripts/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/scripts/console -------------------------------------------------------------------------------- /scripts/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/scripts/deploy -------------------------------------------------------------------------------- /scripts/infra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/scripts/infra -------------------------------------------------------------------------------- /scripts/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/scripts/server -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/scripts/setup -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/scripts/update -------------------------------------------------------------------------------- /service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/.dockerignore -------------------------------------------------------------------------------- /service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/Dockerfile -------------------------------------------------------------------------------- /service/Dockerfile.ingest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/Dockerfile.ingest -------------------------------------------------------------------------------- /service/geotrellis/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/build.sbt -------------------------------------------------------------------------------- /service/geotrellis/conf/backend-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/conf/backend-profiles.json -------------------------------------------------------------------------------- /service/geotrellis/conf/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/conf/input.json -------------------------------------------------------------------------------- /service/geotrellis/conf/output-accumulo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/conf/output-accumulo.json -------------------------------------------------------------------------------- /service/geotrellis/conf/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/conf/output.json -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/DevelopedLand.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/DevelopedLand.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/ExampleOfWeightedSumOutput.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/ExampleOfWeightedSumOutput.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/FarmlandOrForestedLandsWithPrimeAgriculturalSoils.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/FarmlandOrForestedLandsWithPrimeAgriculturalSoils.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/FarmlandWithoutPrimeAgriculturalSoils.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/FarmlandWithoutPrimeAgriculturalSoils.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/ForestedLands.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/ForestedLands.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/ImperviousSurfacesBarrenLandsOpenWater.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/ImperviousSurfacesBarrenLandsOpenWater.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/NonWorkingProtectedOrPublicLands.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/NonWorkingProtectedOrPublicLands.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/PrimeAgriculturalSoilsNotForestedOrFarmland.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/PrimeAgriculturalSoilsNotForestedOrFarmland.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/PrivatelyOwnedWorkingLandsWithEasements.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/PrivatelyOwnedWorkingLandsWithEasements.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/PublicallyOwnedWorkingLands.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/PublicallyOwnedWorkingLands.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/Wetlands.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/Wetlands.tiff -------------------------------------------------------------------------------- /service/geotrellis/data/arg_wm/mask.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/data/arg_wm/mask.tiff -------------------------------------------------------------------------------- /service/geotrellis/jvmopts-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/jvmopts-sample -------------------------------------------------------------------------------- /service/geotrellis/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.13 2 | -------------------------------------------------------------------------------- /service/geotrellis/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/project/plugins.sbt -------------------------------------------------------------------------------- /service/geotrellis/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/sbt -------------------------------------------------------------------------------- /service/geotrellis/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/resources/application.conf -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/chatta/ChattaIngest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/chatta/ChattaIngest.scala -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/chatta/ChattaServiceRouter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/chatta/ChattaServiceRouter.scala -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/chatta/LazyLogging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/chatta/LazyLogging.scala -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/chatta/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/chatta/Main.scala -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/chatta/Model.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/chatta/Model.scala -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/chatta/ModelSpark.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/chatta/ModelSpark.scala -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/chatta/Projections.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/chatta/Projections.scala -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/chatta/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/chatta/package.scala -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/kryo/AvroRegistrator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/kryo/AvroRegistrator.scala -------------------------------------------------------------------------------- /service/geotrellis/src/main/scala/geotrellis/services/ColorRampMap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/geotrellis/src/main/scala/geotrellis/services/ColorRampMap.scala -------------------------------------------------------------------------------- /service/static/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/config.json -------------------------------------------------------------------------------- /service/static/css/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/application.css -------------------------------------------------------------------------------- /service/static/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /service/static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /service/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/bootstrap.css -------------------------------------------------------------------------------- /service/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /service/static/css/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/images/layers.png -------------------------------------------------------------------------------- /service/static/css/images/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/images/spritesheet.png -------------------------------------------------------------------------------- /service/static/css/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /service/static/css/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /service/static/css/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /service/static/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /service/static/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/jquery-ui.css -------------------------------------------------------------------------------- /service/static/css/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/leaflet.css -------------------------------------------------------------------------------- /service/static/css/leaflet.draw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/leaflet.draw.css -------------------------------------------------------------------------------- /service/static/css/leaflet.draw.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/leaflet.draw.ie.css -------------------------------------------------------------------------------- /service/static/css/leaflet.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/css/leaflet.ie.css -------------------------------------------------------------------------------- /service/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/favicon.ico -------------------------------------------------------------------------------- /service/static/img/4-way-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/4-way-arrow.png -------------------------------------------------------------------------------- /service/static/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/Thumbs.db -------------------------------------------------------------------------------- /service/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /service/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /service/static/img/leaflet/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/leaflet/layers.png -------------------------------------------------------------------------------- /service/static/img/leaflet/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/leaflet/marker-icon.png -------------------------------------------------------------------------------- /service/static/img/leaflet/marker-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/leaflet/marker-icon@2x.png -------------------------------------------------------------------------------- /service/static/img/leaflet/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/leaflet/marker-shadow.png -------------------------------------------------------------------------------- /service/static/img/ramps/blue-to-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/blue-to-orange.png -------------------------------------------------------------------------------- /service/static/img/ramps/blue-to-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/blue-to-red.png -------------------------------------------------------------------------------- /service/static/img/ramps/blue-to-yellow-to-red-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/blue-to-yellow-to-red-heatmap.png -------------------------------------------------------------------------------- /service/static/img/ramps/bold-land-use-qualitative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/bold-land-use-qualitative.png -------------------------------------------------------------------------------- /service/static/img/ramps/dark-red-to-yellow-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/dark-red-to-yellow-heatmap.png -------------------------------------------------------------------------------- /service/static/img/ramps/green-to-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/green-to-orange.png -------------------------------------------------------------------------------- /service/static/img/ramps/green-to-red-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/green-to-red-orange.png -------------------------------------------------------------------------------- /service/static/img/ramps/light-to-dark-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/light-to-dark-green.png -------------------------------------------------------------------------------- /service/static/img/ramps/light-to-dark-sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/light-to-dark-sunset.png -------------------------------------------------------------------------------- /service/static/img/ramps/muted-terrain-qualitative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/muted-terrain-qualitative.png -------------------------------------------------------------------------------- /service/static/img/ramps/purple-to-dark-purple-to-white-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/purple-to-dark-purple-to-white-heatmap.png -------------------------------------------------------------------------------- /service/static/img/ramps/yellow-to-red-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/img/ramps/yellow-to-red-heatmap.png -------------------------------------------------------------------------------- /service/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/index.html -------------------------------------------------------------------------------- /service/static/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/js/application.js -------------------------------------------------------------------------------- /service/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/js/bootstrap.js -------------------------------------------------------------------------------- /service/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /service/static/js/geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/js/geojson.js -------------------------------------------------------------------------------- /service/static/js/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/js/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /service/static/js/jquery-ui-1.10.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/js/jquery-ui-1.10.0.min.js -------------------------------------------------------------------------------- /service/static/js/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/js/leaflet-src.js -------------------------------------------------------------------------------- /service/static/js/leaflet.draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/js/leaflet.draw.js -------------------------------------------------------------------------------- /service/static/js/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geotrellis/geotrellis-chatta-demo/HEAD/service/static/js/leaflet.js --------------------------------------------------------------------------------