├── .github └── workflows │ └── lint_and_test.yml ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── algebra.rst ├── conf.py ├── index.rst ├── installation.rst ├── introduction.rst ├── parser.rst ├── ref │ ├── index.rst │ ├── shortcuts.rst │ └── utils.rst ├── settings.rst └── tms.rst ├── raster ├── __init__.py ├── admin.py ├── algebra │ ├── __init__.py │ ├── const.py │ └── parser.py ├── const.py ├── exceptions.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20140925_0723.py │ ├── 0003_rastertile_level.py │ ├── 0004_rasterlayermetadata.py │ ├── 0005_auto_20141014_0955.py │ ├── 0006_auto_20141016_0522.py │ ├── 0007_auto_20141017_0240.py │ ├── 0008_auto_20150219_0413.py │ ├── 0009_rasterlayer_max_zoom.py │ ├── 0010_auto_20150429_1207.py │ ├── 0011_auto_20150615_0800.py │ ├── 0012_auto_20150616_0538.py │ ├── 0013_remove_rasterlayer_max_zoom.py │ ├── 0014_remove_rastertile_is_base.py │ ├── 0015_auto_20150819_0320.py │ ├── 0016_rasterlayermetadata_srid.py │ ├── 0017_copy_srids_20150922_0207.py │ ├── 0018_rasterlayermetadata_srs_wkt.py │ ├── 0019_remove_rasterlayer_srid.py │ ├── 0020_auto_20150928_0408.py │ ├── 0021_rasterlayerparsestatus.py │ ├── 0022_auto_20151110_0810.py │ ├── 0023_remove_rasterlayer_parse_log.py │ ├── 0024_auto_20151111_0532.py │ ├── 0025_auto_20151113_0259.py │ ├── 0026_auto_20151120_1334.py │ ├── 0027_rasterlayerreprojected.py │ ├── 0028_auto_20160104_0533.py │ ├── 0029_auto_20160111_0646.py │ ├── 0030_auto_20160111_0813.py │ ├── 0031_auto_20160218_0832.py │ ├── 0032_auto_20160426_0152.py │ ├── 0033_auto_20160510_1041.py │ ├── 0034_legendentryorder.py │ ├── 0035_auto_20170509_0545.py │ ├── 0036_auto_20170509_0548.py │ ├── 0037_auto_20170509_0559.py │ ├── 0038_auto_20171116_1027.py │ ├── 0039_auto_20190313_0728.py │ └── __init__.py ├── mixins.py ├── models.py ├── rasterize.py ├── shortcuts.py ├── tasks.py ├── templates │ └── raster │ │ └── updatepath.html ├── tiles │ ├── __init__.py │ ├── const.py │ ├── lookup.py │ ├── parser.py │ └── utils.py ├── urls.py ├── utils.py ├── valuecount.py └── views.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── expected_tiles ├── test_algebra_band_level.png ├── test_algebra_basic.png ├── test_algebra_empty_tile.png ├── test_algebra_legend_id_specified.png ├── test_algebra_nested.png ├── test_algebra_rgb.png ├── test_algebra_rgb.tif ├── test_algebra_valid_multi_formula.png ├── test_tms_continuous_colormap.png ├── test_tms_entries_query_arg.png ├── test_tms_existing_tile.png ├── test_tms_existing_tile_using_rasterlayer_id_in_url.png ├── test_tms_existing_tile_without_legend.png ├── test_tms_legend_query_arg.png ├── test_tms_manual_colormap_query_arg.png ├── test_tms_manual_colormap_query_arg_hex.png ├── test_tms_nonexisting_tile.png ├── test_tms_nonexisting_tile.tif ├── test_tms_session_colormap.png ├── test_tms_session_colormap_overrides_database_legend_store=database.png ├── test_tms_session_colormap_overrides_database_legend_store=session.png └── test_tms_tif_format.tif ├── models.py ├── raster.tif.zip ├── raster_testcase.py ├── test_algebra.py ├── test_export.py ├── test_formula_parser.py ├── test_histogram.py ├── test_legend.py ├── test_legend_views.py ├── test_rasterize.py ├── test_rasterlayer_parser.py ├── test_tms_views.py ├── test_utils.py ├── test_valuecount.py └── testproj ├── __init__.py ├── celery.py └── settings.py /.github/workflows/lint_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/.github/workflows/lint_and_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/algebra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/algebra.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/parser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/parser.rst -------------------------------------------------------------------------------- /docs/ref/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/ref/index.rst -------------------------------------------------------------------------------- /docs/ref/shortcuts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/ref/shortcuts.rst -------------------------------------------------------------------------------- /docs/ref/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/ref/utils.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/tms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/docs/tms.rst -------------------------------------------------------------------------------- /raster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raster/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/admin.py -------------------------------------------------------------------------------- /raster/algebra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raster/algebra/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/algebra/const.py -------------------------------------------------------------------------------- /raster/algebra/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/algebra/parser.py -------------------------------------------------------------------------------- /raster/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/const.py -------------------------------------------------------------------------------- /raster/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/exceptions.py -------------------------------------------------------------------------------- /raster/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0001_initial.py -------------------------------------------------------------------------------- /raster/migrations/0002_auto_20140925_0723.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0002_auto_20140925_0723.py -------------------------------------------------------------------------------- /raster/migrations/0003_rastertile_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0003_rastertile_level.py -------------------------------------------------------------------------------- /raster/migrations/0004_rasterlayermetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0004_rasterlayermetadata.py -------------------------------------------------------------------------------- /raster/migrations/0005_auto_20141014_0955.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0005_auto_20141014_0955.py -------------------------------------------------------------------------------- /raster/migrations/0006_auto_20141016_0522.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0006_auto_20141016_0522.py -------------------------------------------------------------------------------- /raster/migrations/0007_auto_20141017_0240.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0007_auto_20141017_0240.py -------------------------------------------------------------------------------- /raster/migrations/0008_auto_20150219_0413.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0008_auto_20150219_0413.py -------------------------------------------------------------------------------- /raster/migrations/0009_rasterlayer_max_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0009_rasterlayer_max_zoom.py -------------------------------------------------------------------------------- /raster/migrations/0010_auto_20150429_1207.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0010_auto_20150429_1207.py -------------------------------------------------------------------------------- /raster/migrations/0011_auto_20150615_0800.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0011_auto_20150615_0800.py -------------------------------------------------------------------------------- /raster/migrations/0012_auto_20150616_0538.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0012_auto_20150616_0538.py -------------------------------------------------------------------------------- /raster/migrations/0013_remove_rasterlayer_max_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0013_remove_rasterlayer_max_zoom.py -------------------------------------------------------------------------------- /raster/migrations/0014_remove_rastertile_is_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0014_remove_rastertile_is_base.py -------------------------------------------------------------------------------- /raster/migrations/0015_auto_20150819_0320.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0015_auto_20150819_0320.py -------------------------------------------------------------------------------- /raster/migrations/0016_rasterlayermetadata_srid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0016_rasterlayermetadata_srid.py -------------------------------------------------------------------------------- /raster/migrations/0017_copy_srids_20150922_0207.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0017_copy_srids_20150922_0207.py -------------------------------------------------------------------------------- /raster/migrations/0018_rasterlayermetadata_srs_wkt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0018_rasterlayermetadata_srs_wkt.py -------------------------------------------------------------------------------- /raster/migrations/0019_remove_rasterlayer_srid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0019_remove_rasterlayer_srid.py -------------------------------------------------------------------------------- /raster/migrations/0020_auto_20150928_0408.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0020_auto_20150928_0408.py -------------------------------------------------------------------------------- /raster/migrations/0021_rasterlayerparsestatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0021_rasterlayerparsestatus.py -------------------------------------------------------------------------------- /raster/migrations/0022_auto_20151110_0810.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0022_auto_20151110_0810.py -------------------------------------------------------------------------------- /raster/migrations/0023_remove_rasterlayer_parse_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0023_remove_rasterlayer_parse_log.py -------------------------------------------------------------------------------- /raster/migrations/0024_auto_20151111_0532.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0024_auto_20151111_0532.py -------------------------------------------------------------------------------- /raster/migrations/0025_auto_20151113_0259.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0025_auto_20151113_0259.py -------------------------------------------------------------------------------- /raster/migrations/0026_auto_20151120_1334.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0026_auto_20151120_1334.py -------------------------------------------------------------------------------- /raster/migrations/0027_rasterlayerreprojected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0027_rasterlayerreprojected.py -------------------------------------------------------------------------------- /raster/migrations/0028_auto_20160104_0533.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0028_auto_20160104_0533.py -------------------------------------------------------------------------------- /raster/migrations/0029_auto_20160111_0646.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0029_auto_20160111_0646.py -------------------------------------------------------------------------------- /raster/migrations/0030_auto_20160111_0813.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0030_auto_20160111_0813.py -------------------------------------------------------------------------------- /raster/migrations/0031_auto_20160218_0832.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0031_auto_20160218_0832.py -------------------------------------------------------------------------------- /raster/migrations/0032_auto_20160426_0152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0032_auto_20160426_0152.py -------------------------------------------------------------------------------- /raster/migrations/0033_auto_20160510_1041.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0033_auto_20160510_1041.py -------------------------------------------------------------------------------- /raster/migrations/0034_legendentryorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0034_legendentryorder.py -------------------------------------------------------------------------------- /raster/migrations/0035_auto_20170509_0545.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0035_auto_20170509_0545.py -------------------------------------------------------------------------------- /raster/migrations/0036_auto_20170509_0548.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0036_auto_20170509_0548.py -------------------------------------------------------------------------------- /raster/migrations/0037_auto_20170509_0559.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0037_auto_20170509_0559.py -------------------------------------------------------------------------------- /raster/migrations/0038_auto_20171116_1027.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0038_auto_20171116_1027.py -------------------------------------------------------------------------------- /raster/migrations/0039_auto_20190313_0728.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/migrations/0039_auto_20190313_0728.py -------------------------------------------------------------------------------- /raster/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raster/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/mixins.py -------------------------------------------------------------------------------- /raster/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/models.py -------------------------------------------------------------------------------- /raster/rasterize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/rasterize.py -------------------------------------------------------------------------------- /raster/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/shortcuts.py -------------------------------------------------------------------------------- /raster/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/tasks.py -------------------------------------------------------------------------------- /raster/templates/raster/updatepath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/templates/raster/updatepath.html -------------------------------------------------------------------------------- /raster/tiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raster/tiles/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/tiles/const.py -------------------------------------------------------------------------------- /raster/tiles/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/tiles/lookup.py -------------------------------------------------------------------------------- /raster/tiles/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/tiles/parser.py -------------------------------------------------------------------------------- /raster/tiles/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/tiles/utils.py -------------------------------------------------------------------------------- /raster/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/urls.py -------------------------------------------------------------------------------- /raster/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/utils.py -------------------------------------------------------------------------------- /raster/valuecount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/valuecount.py -------------------------------------------------------------------------------- /raster/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/raster/views.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/expected_tiles/test_algebra_band_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_algebra_band_level.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_algebra_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_algebra_basic.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_algebra_empty_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_algebra_empty_tile.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_algebra_legend_id_specified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_algebra_legend_id_specified.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_algebra_nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_algebra_nested.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_algebra_rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_algebra_rgb.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_algebra_rgb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_algebra_rgb.tif -------------------------------------------------------------------------------- /tests/expected_tiles/test_algebra_valid_multi_formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_algebra_valid_multi_formula.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_continuous_colormap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_continuous_colormap.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_entries_query_arg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_entries_query_arg.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_existing_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_existing_tile.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_existing_tile_using_rasterlayer_id_in_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_existing_tile_using_rasterlayer_id_in_url.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_existing_tile_without_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_existing_tile_without_legend.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_legend_query_arg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_legend_query_arg.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_manual_colormap_query_arg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_manual_colormap_query_arg.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_manual_colormap_query_arg_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_manual_colormap_query_arg_hex.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_nonexisting_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_nonexisting_tile.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_nonexisting_tile.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_nonexisting_tile.tif -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_session_colormap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_session_colormap.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_session_colormap_overrides_database_legend_store=database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_session_colormap_overrides_database_legend_store=database.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_session_colormap_overrides_database_legend_store=session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_session_colormap_overrides_database_legend_store=session.png -------------------------------------------------------------------------------- /tests/expected_tiles/test_tms_tif_format.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/expected_tiles/test_tms_tif_format.tif -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/raster.tif.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/raster.tif.zip -------------------------------------------------------------------------------- /tests/raster_testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/raster_testcase.py -------------------------------------------------------------------------------- /tests/test_algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_algebra.py -------------------------------------------------------------------------------- /tests/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_export.py -------------------------------------------------------------------------------- /tests/test_formula_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_formula_parser.py -------------------------------------------------------------------------------- /tests/test_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_histogram.py -------------------------------------------------------------------------------- /tests/test_legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_legend.py -------------------------------------------------------------------------------- /tests/test_legend_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_legend_views.py -------------------------------------------------------------------------------- /tests/test_rasterize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_rasterize.py -------------------------------------------------------------------------------- /tests/test_rasterlayer_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_rasterlayer_parser.py -------------------------------------------------------------------------------- /tests/test_tms_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_tms_views.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_valuecount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/test_valuecount.py -------------------------------------------------------------------------------- /tests/testproj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/testproj/__init__.py -------------------------------------------------------------------------------- /tests/testproj/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/testproj/celery.py -------------------------------------------------------------------------------- /tests/testproj/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-raster/HEAD/tests/testproj/settings.py --------------------------------------------------------------------------------