├── .gitignore ├── CHANGES.txt ├── GDAL_COOKBOOK.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── clean_pyc ├── docker ├── Dockerfile ├── README.md ├── install-base.sh ├── install-python.sh └── jupyter │ ├── certs │ ├── jupyter.key │ └── jupyter.pem │ └── jupyter_notebook_config.py ├── docs ├── Makefile ├── apidoc ├── conf.py ├── index.rst ├── install.rst ├── license.rst ├── make.bat ├── modules.rst ├── pyspatial.rst └── readme.md ├── examples ├── creating_a_tiled_raster.ipynb ├── gdal2tiles.ipynb ├── leaflet_styles_and_markers.ipynb ├── pyspatial_overview.ipynb ├── query_rgb.ipynb └── visualizing_on_map_using_leaflet.ipynb ├── pyspatial ├── __init__.py ├── dataset.py ├── fileutils.py ├── geoio.py ├── globalmaptiles.py ├── py3.py ├── raster.py ├── spatiallib.c ├── spatiallib.html ├── spatiallib.pyx ├── templates │ ├── app.js │ ├── css │ │ ├── base.css │ │ └── table.css │ ├── data.json │ └── map.html ├── utils.py ├── vector.py └── visualize.py ├── requirements-dev.txt ├── requirements-py3.txt ├── requirements.txt ├── scripts ├── create_catalog.py ├── create_catalog_for_gdal2tiles_tiles.py ├── gdal2tiles.py ├── make_catalog_file ├── make_index └── requirements-ubuntu.sh ├── setup.cfg ├── setup.py ├── test ├── catalog │ ├── cdl_2014.json │ ├── cdl_2014_tilepath.json │ ├── cdl_2014_untiled.json │ ├── cdl_2014_with_index.json │ ├── co_soil.json │ ├── co_soil_bad.json │ └── s3_cdl_2014.json ├── data │ ├── cdl2014clu_public_a_il189.shp.csv │ ├── expected.csv │ ├── raster │ │ ├── 95000_45000.tif │ │ ├── 95000_45000.tif.index.json │ │ ├── 95000_45000_rgb.tif.gz │ │ ├── 95000_45000_rgb.vrt │ │ ├── co_soil_tiled │ │ │ ├── 63500_10500.tif │ │ │ ├── 63500_11000.tif │ │ │ ├── 63500_11500.tif │ │ │ ├── 63500_12000.tif │ │ │ ├── 63500_12500.tif │ │ │ ├── 63500_9500.tif │ │ │ ├── 64000_10000.tif │ │ │ ├── 64000_10500.tif │ │ │ ├── 64000_11000.tif │ │ │ ├── 64000_11500.tif │ │ │ ├── 64000_12000.tif │ │ │ ├── 64000_12500.tif │ │ │ └── 64000_9500.tif │ │ ├── prism.tif │ │ ├── tiled │ │ │ ├── 0_0.tif │ │ │ ├── 0_0.tif.aux.xml │ │ │ ├── 0_1000.tif │ │ │ ├── 0_1000.tif.aux.xml │ │ │ ├── 0_1250.tif │ │ │ ├── 0_1250.tif.aux.xml │ │ │ ├── 0_1500.tif │ │ │ ├── 0_1500.tif.aux.xml │ │ │ ├── 0_1750.tif │ │ │ ├── 0_1750.tif.aux.xml │ │ │ ├── 0_2000.tif │ │ │ ├── 0_2000.tif.aux.xml │ │ │ ├── 0_2250.tif │ │ │ ├── 0_2250.tif.aux.xml │ │ │ ├── 0_250.tif │ │ │ ├── 0_250.tif.aux.xml │ │ │ ├── 0_2500.tif │ │ │ ├── 0_2500.tif.aux.xml │ │ │ ├── 0_2750.tif │ │ │ ├── 0_2750.tif.aux.xml │ │ │ ├── 0_3000.tif │ │ │ ├── 0_3000.tif.aux.xml │ │ │ ├── 0_3250.tif │ │ │ ├── 0_3250.tif.aux.xml │ │ │ ├── 0_3500.tif │ │ │ ├── 0_3500.tif.aux.xml │ │ │ ├── 0_3750.tif │ │ │ ├── 0_3750.tif.aux.xml │ │ │ ├── 0_4000.tif │ │ │ ├── 0_4000.tif.aux.xml │ │ │ ├── 0_4250.tif │ │ │ ├── 0_4250.tif.aux.xml │ │ │ ├── 0_4500.tif │ │ │ ├── 0_4500.tif.aux.xml │ │ │ ├── 0_4750.tif │ │ │ ├── 0_4750.tif.aux.xml │ │ │ ├── 0_500.tif │ │ │ ├── 0_500.tif.aux.xml │ │ │ ├── 0_750.tif │ │ │ ├── 0_750.tif.aux.xml │ │ │ ├── 1000_0.tif │ │ │ ├── 1000_0.tif.aux.xml │ │ │ ├── 1000_1000.tif │ │ │ ├── 1000_1000.tif.aux.xml │ │ │ ├── 1000_1250.tif │ │ │ ├── 1000_1250.tif.aux.xml │ │ │ ├── 1000_1500.tif │ │ │ ├── 1000_1500.tif.aux.xml │ │ │ ├── 1000_1750.tif │ │ │ ├── 1000_1750.tif.aux.xml │ │ │ ├── 1000_2000.tif │ │ │ ├── 1000_2000.tif.aux.xml │ │ │ ├── 1000_2250.tif │ │ │ ├── 1000_2250.tif.aux.xml │ │ │ ├── 1000_250.tif │ │ │ ├── 1000_250.tif.aux.xml │ │ │ ├── 1000_2500.tif │ │ │ ├── 1000_2500.tif.aux.xml │ │ │ ├── 1000_2750.tif │ │ │ ├── 1000_2750.tif.aux.xml │ │ │ ├── 1000_3000.tif │ │ │ ├── 1000_3000.tif.aux.xml │ │ │ ├── 1000_3250.tif │ │ │ ├── 1000_3250.tif.aux.xml │ │ │ ├── 1000_3500.tif │ │ │ ├── 1000_3500.tif.aux.xml │ │ │ ├── 1000_3750.tif │ │ │ ├── 1000_3750.tif.aux.xml │ │ │ ├── 1000_4000.tif │ │ │ ├── 1000_4000.tif.aux.xml │ │ │ ├── 1000_4250.tif │ │ │ ├── 1000_4250.tif.aux.xml │ │ │ ├── 1000_4500.tif │ │ │ ├── 1000_4500.tif.aux.xml │ │ │ ├── 1000_4750.tif │ │ │ ├── 1000_4750.tif.aux.xml │ │ │ ├── 1000_500.tif │ │ │ ├── 1000_500.tif.aux.xml │ │ │ ├── 1000_750.tif │ │ │ ├── 1000_750.tif.aux.xml │ │ │ ├── 1250_0.tif │ │ │ ├── 1250_0.tif.aux.xml │ │ │ ├── 1250_1000.tif │ │ │ ├── 1250_1000.tif.aux.xml │ │ │ ├── 1250_1250.tif │ │ │ ├── 1250_1250.tif.aux.xml │ │ │ ├── 1250_1500.tif │ │ │ ├── 1250_1500.tif.aux.xml │ │ │ ├── 1250_1750.tif │ │ │ ├── 1250_1750.tif.aux.xml │ │ │ ├── 1250_2000.tif │ │ │ ├── 1250_2000.tif.aux.xml │ │ │ ├── 1250_2250.tif │ │ │ ├── 1250_2250.tif.aux.xml │ │ │ ├── 1250_250.tif │ │ │ ├── 1250_250.tif.aux.xml │ │ │ ├── 1250_2500.tif │ │ │ ├── 1250_2500.tif.aux.xml │ │ │ ├── 1250_2750.tif │ │ │ ├── 1250_2750.tif.aux.xml │ │ │ ├── 1250_3000.tif │ │ │ ├── 1250_3000.tif.aux.xml │ │ │ ├── 1250_3250.tif │ │ │ ├── 1250_3250.tif.aux.xml │ │ │ ├── 1250_3500.tif │ │ │ ├── 1250_3500.tif.aux.xml │ │ │ ├── 1250_3750.tif │ │ │ ├── 1250_3750.tif.aux.xml │ │ │ ├── 1250_4000.tif │ │ │ ├── 1250_4000.tif.aux.xml │ │ │ ├── 1250_4250.tif │ │ │ ├── 1250_4250.tif.aux.xml │ │ │ ├── 1250_4500.tif │ │ │ ├── 1250_4500.tif.aux.xml │ │ │ ├── 1250_4750.tif │ │ │ ├── 1250_4750.tif.aux.xml │ │ │ ├── 1250_500.tif │ │ │ ├── 1250_500.tif.aux.xml │ │ │ ├── 1250_750.tif │ │ │ ├── 1250_750.tif.aux.xml │ │ │ ├── 1500_0.tif │ │ │ ├── 1500_0.tif.aux.xml │ │ │ ├── 1500_1000.tif │ │ │ ├── 1500_1000.tif.aux.xml │ │ │ ├── 1500_1250.tif │ │ │ ├── 1500_1250.tif.aux.xml │ │ │ ├── 1500_1500.tif │ │ │ ├── 1500_1500.tif.aux.xml │ │ │ ├── 1500_1750.tif │ │ │ ├── 1500_1750.tif.aux.xml │ │ │ ├── 1500_2000.tif │ │ │ ├── 1500_2000.tif.aux.xml │ │ │ ├── 1500_2250.tif │ │ │ ├── 1500_2250.tif.aux.xml │ │ │ ├── 1500_250.tif │ │ │ ├── 1500_250.tif.aux.xml │ │ │ ├── 1500_2500.tif │ │ │ ├── 1500_2500.tif.aux.xml │ │ │ ├── 1500_2750.tif │ │ │ ├── 1500_2750.tif.aux.xml │ │ │ ├── 1500_3000.tif │ │ │ ├── 1500_3000.tif.aux.xml │ │ │ ├── 1500_3250.tif │ │ │ ├── 1500_3250.tif.aux.xml │ │ │ ├── 1500_3500.tif │ │ │ ├── 1500_3500.tif.aux.xml │ │ │ ├── 1500_3750.tif │ │ │ ├── 1500_3750.tif.aux.xml │ │ │ ├── 1500_4000.tif │ │ │ ├── 1500_4000.tif.aux.xml │ │ │ ├── 1500_4250.tif │ │ │ ├── 1500_4250.tif.aux.xml │ │ │ ├── 1500_4500.tif │ │ │ ├── 1500_4500.tif.aux.xml │ │ │ ├── 1500_4750.tif │ │ │ ├── 1500_4750.tif.aux.xml │ │ │ ├── 1500_500.tif │ │ │ ├── 1500_500.tif.aux.xml │ │ │ ├── 1500_750.tif │ │ │ ├── 1500_750.tif.aux.xml │ │ │ ├── 1750_0.tif │ │ │ ├── 1750_0.tif.aux.xml │ │ │ ├── 1750_1000.tif │ │ │ ├── 1750_1000.tif.aux.xml │ │ │ ├── 1750_1250.tif │ │ │ ├── 1750_1250.tif.aux.xml │ │ │ ├── 1750_1500.tif │ │ │ ├── 1750_1500.tif.aux.xml │ │ │ ├── 1750_1750.tif │ │ │ ├── 1750_1750.tif.aux.xml │ │ │ ├── 1750_2000.tif │ │ │ ├── 1750_2000.tif.aux.xml │ │ │ ├── 1750_2250.tif │ │ │ ├── 1750_2250.tif.aux.xml │ │ │ ├── 1750_250.tif │ │ │ ├── 1750_250.tif.aux.xml │ │ │ ├── 1750_2500.tif │ │ │ ├── 1750_2500.tif.aux.xml │ │ │ ├── 1750_2750.tif │ │ │ ├── 1750_2750.tif.aux.xml │ │ │ ├── 1750_3000.tif │ │ │ ├── 1750_3000.tif.aux.xml │ │ │ ├── 1750_3250.tif │ │ │ ├── 1750_3250.tif.aux.xml │ │ │ ├── 1750_3500.tif │ │ │ ├── 1750_3500.tif.aux.xml │ │ │ ├── 1750_3750.tif │ │ │ ├── 1750_3750.tif.aux.xml │ │ │ ├── 1750_4000.tif │ │ │ ├── 1750_4000.tif.aux.xml │ │ │ ├── 1750_4250.tif │ │ │ ├── 1750_4250.tif.aux.xml │ │ │ ├── 1750_4500.tif │ │ │ ├── 1750_4500.tif.aux.xml │ │ │ ├── 1750_4750.tif │ │ │ ├── 1750_4750.tif.aux.xml │ │ │ ├── 1750_500.tif │ │ │ ├── 1750_500.tif.aux.xml │ │ │ ├── 1750_750.tif │ │ │ ├── 1750_750.tif.aux.xml │ │ │ ├── 2000_0.tif │ │ │ ├── 2000_0.tif.aux.xml │ │ │ ├── 2000_1000.tif │ │ │ ├── 2000_1000.tif.aux.xml │ │ │ ├── 2000_1250.tif │ │ │ ├── 2000_1250.tif.aux.xml │ │ │ ├── 2000_1500.tif │ │ │ ├── 2000_1500.tif.aux.xml │ │ │ ├── 2000_1750.tif │ │ │ ├── 2000_1750.tif.aux.xml │ │ │ ├── 2000_2000.tif │ │ │ ├── 2000_2000.tif.aux.xml │ │ │ ├── 2000_2250.tif │ │ │ ├── 2000_2250.tif.aux.xml │ │ │ ├── 2000_250.tif │ │ │ ├── 2000_250.tif.aux.xml │ │ │ ├── 2000_2500.tif │ │ │ ├── 2000_2500.tif.aux.xml │ │ │ ├── 2000_2750.tif │ │ │ ├── 2000_2750.tif.aux.xml │ │ │ ├── 2000_3000.tif │ │ │ ├── 2000_3000.tif.aux.xml │ │ │ ├── 2000_3250.tif │ │ │ ├── 2000_3250.tif.aux.xml │ │ │ ├── 2000_3500.tif │ │ │ ├── 2000_3500.tif.aux.xml │ │ │ ├── 2000_3750.tif │ │ │ ├── 2000_3750.tif.aux.xml │ │ │ ├── 2000_4000.tif │ │ │ ├── 2000_4000.tif.aux.xml │ │ │ ├── 2000_4250.tif │ │ │ ├── 2000_4250.tif.aux.xml │ │ │ ├── 2000_4500.tif │ │ │ ├── 2000_4500.tif.aux.xml │ │ │ ├── 2000_4750.tif │ │ │ ├── 2000_4750.tif.aux.xml │ │ │ ├── 2000_500.tif │ │ │ ├── 2000_500.tif.aux.xml │ │ │ ├── 2000_750.tif │ │ │ ├── 2000_750.tif.aux.xml │ │ │ ├── 2250_0.tif │ │ │ ├── 2250_0.tif.aux.xml │ │ │ ├── 2250_1000.tif │ │ │ ├── 2250_1000.tif.aux.xml │ │ │ ├── 2250_1250.tif │ │ │ ├── 2250_1250.tif.aux.xml │ │ │ ├── 2250_1500.tif │ │ │ ├── 2250_1500.tif.aux.xml │ │ │ ├── 2250_1750.tif │ │ │ ├── 2250_1750.tif.aux.xml │ │ │ ├── 2250_2000.tif │ │ │ ├── 2250_2000.tif.aux.xml │ │ │ ├── 2250_2250.tif │ │ │ ├── 2250_2250.tif.aux.xml │ │ │ ├── 2250_250.tif │ │ │ ├── 2250_250.tif.aux.xml │ │ │ ├── 2250_2500.tif │ │ │ ├── 2250_2500.tif.aux.xml │ │ │ ├── 2250_2750.tif │ │ │ ├── 2250_2750.tif.aux.xml │ │ │ ├── 2250_3000.tif │ │ │ ├── 2250_3000.tif.aux.xml │ │ │ ├── 2250_3250.tif │ │ │ ├── 2250_3250.tif.aux.xml │ │ │ ├── 2250_3500.tif │ │ │ ├── 2250_3500.tif.aux.xml │ │ │ ├── 2250_3750.tif │ │ │ ├── 2250_3750.tif.aux.xml │ │ │ ├── 2250_4000.tif │ │ │ ├── 2250_4000.tif.aux.xml │ │ │ ├── 2250_4250.tif │ │ │ ├── 2250_4250.tif.aux.xml │ │ │ ├── 2250_4500.tif │ │ │ ├── 2250_4500.tif.aux.xml │ │ │ ├── 2250_4750.tif │ │ │ ├── 2250_4750.tif.aux.xml │ │ │ ├── 2250_500.tif │ │ │ ├── 2250_500.tif.aux.xml │ │ │ ├── 2250_750.tif │ │ │ ├── 2250_750.tif.aux.xml │ │ │ ├── 2500_0.tif │ │ │ ├── 2500_0.tif.aux.xml │ │ │ ├── 2500_1000.tif │ │ │ ├── 2500_1000.tif.aux.xml │ │ │ ├── 2500_1250.tif │ │ │ ├── 2500_1250.tif.aux.xml │ │ │ ├── 2500_1500.tif │ │ │ ├── 2500_1500.tif.aux.xml │ │ │ ├── 2500_1750.tif │ │ │ ├── 2500_1750.tif.aux.xml │ │ │ ├── 2500_2000.tif │ │ │ ├── 2500_2000.tif.aux.xml │ │ │ ├── 2500_2250.tif │ │ │ ├── 2500_2250.tif.aux.xml │ │ │ ├── 2500_250.tif │ │ │ ├── 2500_250.tif.aux.xml │ │ │ ├── 2500_2500.tif │ │ │ ├── 2500_2500.tif.aux.xml │ │ │ ├── 2500_2750.tif │ │ │ ├── 2500_2750.tif.aux.xml │ │ │ ├── 2500_3000.tif │ │ │ ├── 2500_3000.tif.aux.xml │ │ │ ├── 2500_3250.tif │ │ │ ├── 2500_3250.tif.aux.xml │ │ │ ├── 2500_3500.tif │ │ │ ├── 2500_3500.tif.aux.xml │ │ │ ├── 2500_3750.tif │ │ │ ├── 2500_3750.tif.aux.xml │ │ │ ├── 2500_4000.tif │ │ │ ├── 2500_4000.tif.aux.xml │ │ │ ├── 2500_4250.tif │ │ │ ├── 2500_4250.tif.aux.xml │ │ │ ├── 2500_4500.tif │ │ │ ├── 2500_4500.tif.aux.xml │ │ │ ├── 2500_4750.tif │ │ │ ├── 2500_4750.tif.aux.xml │ │ │ ├── 2500_500.tif │ │ │ ├── 2500_500.tif.aux.xml │ │ │ ├── 2500_750.tif │ │ │ ├── 2500_750.tif.aux.xml │ │ │ ├── 250_0.tif │ │ │ ├── 250_0.tif.aux.xml │ │ │ ├── 250_1000.tif │ │ │ ├── 250_1000.tif.aux.xml │ │ │ ├── 250_1250.tif │ │ │ ├── 250_1250.tif.aux.xml │ │ │ ├── 250_1500.tif │ │ │ ├── 250_1500.tif.aux.xml │ │ │ ├── 250_1750.tif │ │ │ ├── 250_1750.tif.aux.xml │ │ │ ├── 250_2000.tif │ │ │ ├── 250_2000.tif.aux.xml │ │ │ ├── 250_2250.tif │ │ │ ├── 250_2250.tif.aux.xml │ │ │ ├── 250_250.tif │ │ │ ├── 250_250.tif.aux.xml │ │ │ ├── 250_2500.tif │ │ │ ├── 250_2500.tif.aux.xml │ │ │ ├── 250_2750.tif │ │ │ ├── 250_2750.tif.aux.xml │ │ │ ├── 250_3000.tif │ │ │ ├── 250_3000.tif.aux.xml │ │ │ ├── 250_3250.tif │ │ │ ├── 250_3250.tif.aux.xml │ │ │ ├── 250_3500.tif │ │ │ ├── 250_3500.tif.aux.xml │ │ │ ├── 250_3750.tif │ │ │ ├── 250_3750.tif.aux.xml │ │ │ ├── 250_4000.tif │ │ │ ├── 250_4000.tif.aux.xml │ │ │ ├── 250_4250.tif │ │ │ ├── 250_4250.tif.aux.xml │ │ │ ├── 250_4500.tif │ │ │ ├── 250_4500.tif.aux.xml │ │ │ ├── 250_4750.tif │ │ │ ├── 250_4750.tif.aux.xml │ │ │ ├── 250_500.tif │ │ │ ├── 250_500.tif.aux.xml │ │ │ ├── 250_750.tif │ │ │ ├── 250_750.tif.aux.xml │ │ │ ├── 2750_0.tif │ │ │ ├── 2750_0.tif.aux.xml │ │ │ ├── 2750_1000.tif │ │ │ ├── 2750_1000.tif.aux.xml │ │ │ ├── 2750_1250.tif │ │ │ ├── 2750_1250.tif.aux.xml │ │ │ ├── 2750_1500.tif │ │ │ ├── 2750_1500.tif.aux.xml │ │ │ ├── 2750_1750.tif │ │ │ ├── 2750_1750.tif.aux.xml │ │ │ ├── 2750_2000.tif │ │ │ ├── 2750_2000.tif.aux.xml │ │ │ ├── 2750_2250.tif │ │ │ ├── 2750_2250.tif.aux.xml │ │ │ ├── 2750_250.tif │ │ │ ├── 2750_250.tif.aux.xml │ │ │ ├── 2750_2500.tif │ │ │ ├── 2750_2500.tif.aux.xml │ │ │ ├── 2750_2750.tif │ │ │ ├── 2750_2750.tif.aux.xml │ │ │ ├── 2750_3000.tif │ │ │ ├── 2750_3000.tif.aux.xml │ │ │ ├── 2750_3250.tif │ │ │ ├── 2750_3250.tif.aux.xml │ │ │ ├── 2750_3500.tif │ │ │ ├── 2750_3500.tif.aux.xml │ │ │ ├── 2750_3750.tif │ │ │ ├── 2750_3750.tif.aux.xml │ │ │ ├── 2750_4000.tif │ │ │ ├── 2750_4000.tif.aux.xml │ │ │ ├── 2750_4250.tif │ │ │ ├── 2750_4250.tif.aux.xml │ │ │ ├── 2750_4500.tif │ │ │ ├── 2750_4500.tif.aux.xml │ │ │ ├── 2750_4750.tif │ │ │ ├── 2750_4750.tif.aux.xml │ │ │ ├── 2750_500.tif │ │ │ ├── 2750_500.tif.aux.xml │ │ │ ├── 2750_750.tif │ │ │ ├── 2750_750.tif.aux.xml │ │ │ ├── 3000_0.tif │ │ │ ├── 3000_0.tif.aux.xml │ │ │ ├── 3000_1000.tif │ │ │ ├── 3000_1000.tif.aux.xml │ │ │ ├── 3000_1250.tif │ │ │ ├── 3000_1250.tif.aux.xml │ │ │ ├── 3000_1500.tif │ │ │ ├── 3000_1500.tif.aux.xml │ │ │ ├── 3000_1750.tif │ │ │ ├── 3000_1750.tif.aux.xml │ │ │ ├── 3000_2000.tif │ │ │ ├── 3000_2000.tif.aux.xml │ │ │ ├── 3000_2250.tif │ │ │ ├── 3000_2250.tif.aux.xml │ │ │ ├── 3000_250.tif │ │ │ ├── 3000_250.tif.aux.xml │ │ │ ├── 3000_2500.tif │ │ │ ├── 3000_2500.tif.aux.xml │ │ │ ├── 3000_2750.tif │ │ │ ├── 3000_2750.tif.aux.xml │ │ │ ├── 3000_3000.tif │ │ │ ├── 3000_3000.tif.aux.xml │ │ │ ├── 3000_3250.tif │ │ │ ├── 3000_3250.tif.aux.xml │ │ │ ├── 3000_3500.tif │ │ │ ├── 3000_3500.tif.aux.xml │ │ │ ├── 3000_3750.tif │ │ │ ├── 3000_3750.tif.aux.xml │ │ │ ├── 3000_4000.tif │ │ │ ├── 3000_4000.tif.aux.xml │ │ │ ├── 3000_4250.tif │ │ │ ├── 3000_4250.tif.aux.xml │ │ │ ├── 3000_4500.tif │ │ │ ├── 3000_4500.tif.aux.xml │ │ │ ├── 3000_4750.tif │ │ │ ├── 3000_4750.tif.aux.xml │ │ │ ├── 3000_500.tif │ │ │ ├── 3000_500.tif.aux.xml │ │ │ ├── 3000_750.tif │ │ │ ├── 3000_750.tif.aux.xml │ │ │ ├── 3250_0.tif │ │ │ ├── 3250_0.tif.aux.xml │ │ │ ├── 3250_1000.tif │ │ │ ├── 3250_1000.tif.aux.xml │ │ │ ├── 3250_1250.tif │ │ │ ├── 3250_1250.tif.aux.xml │ │ │ ├── 3250_1500.tif │ │ │ ├── 3250_1500.tif.aux.xml │ │ │ ├── 3250_1750.tif │ │ │ ├── 3250_1750.tif.aux.xml │ │ │ ├── 3250_2000.tif │ │ │ ├── 3250_2000.tif.aux.xml │ │ │ ├── 3250_2250.tif │ │ │ ├── 3250_2250.tif.aux.xml │ │ │ ├── 3250_250.tif │ │ │ ├── 3250_250.tif.aux.xml │ │ │ ├── 3250_2500.tif │ │ │ ├── 3250_2500.tif.aux.xml │ │ │ ├── 3250_2750.tif │ │ │ ├── 3250_2750.tif.aux.xml │ │ │ ├── 3250_3000.tif │ │ │ ├── 3250_3000.tif.aux.xml │ │ │ ├── 3250_3250.tif │ │ │ ├── 3250_3250.tif.aux.xml │ │ │ ├── 3250_3500.tif │ │ │ ├── 3250_3500.tif.aux.xml │ │ │ ├── 3250_3750.tif │ │ │ ├── 3250_3750.tif.aux.xml │ │ │ ├── 3250_4000.tif │ │ │ ├── 3250_4000.tif.aux.xml │ │ │ ├── 3250_4250.tif │ │ │ ├── 3250_4250.tif.aux.xml │ │ │ ├── 3250_4500.tif │ │ │ ├── 3250_4500.tif.aux.xml │ │ │ ├── 3250_4750.tif │ │ │ ├── 3250_4750.tif.aux.xml │ │ │ ├── 3250_500.tif │ │ │ ├── 3250_500.tif.aux.xml │ │ │ ├── 3250_750.tif │ │ │ ├── 3250_750.tif.aux.xml │ │ │ ├── 3500_0.tif │ │ │ ├── 3500_0.tif.aux.xml │ │ │ ├── 3500_1000.tif │ │ │ ├── 3500_1000.tif.aux.xml │ │ │ ├── 3500_1250.tif │ │ │ ├── 3500_1250.tif.aux.xml │ │ │ ├── 3500_1500.tif │ │ │ ├── 3500_1500.tif.aux.xml │ │ │ ├── 3500_1750.tif │ │ │ ├── 3500_1750.tif.aux.xml │ │ │ ├── 3500_2000.tif │ │ │ ├── 3500_2000.tif.aux.xml │ │ │ ├── 3500_2250.tif │ │ │ ├── 3500_2250.tif.aux.xml │ │ │ ├── 3500_250.tif │ │ │ ├── 3500_250.tif.aux.xml │ │ │ ├── 3500_2500.tif │ │ │ ├── 3500_2500.tif.aux.xml │ │ │ ├── 3500_2750.tif │ │ │ ├── 3500_2750.tif.aux.xml │ │ │ ├── 3500_3000.tif │ │ │ ├── 3500_3000.tif.aux.xml │ │ │ ├── 3500_3250.tif │ │ │ ├── 3500_3250.tif.aux.xml │ │ │ ├── 3500_3500.tif │ │ │ ├── 3500_3500.tif.aux.xml │ │ │ ├── 3500_3750.tif │ │ │ ├── 3500_3750.tif.aux.xml │ │ │ ├── 3500_4000.tif │ │ │ ├── 3500_4000.tif.aux.xml │ │ │ ├── 3500_4250.tif │ │ │ ├── 3500_4250.tif.aux.xml │ │ │ ├── 3500_4500.tif │ │ │ ├── 3500_4500.tif.aux.xml │ │ │ ├── 3500_4750.tif │ │ │ ├── 3500_4750.tif.aux.xml │ │ │ ├── 3500_500.tif │ │ │ ├── 3500_500.tif.aux.xml │ │ │ ├── 3500_750.tif │ │ │ ├── 3500_750.tif.aux.xml │ │ │ ├── 3750_0.tif │ │ │ ├── 3750_0.tif.aux.xml │ │ │ ├── 3750_1000.tif │ │ │ ├── 3750_1000.tif.aux.xml │ │ │ ├── 3750_1250.tif │ │ │ ├── 3750_1250.tif.aux.xml │ │ │ ├── 3750_1500.tif │ │ │ ├── 3750_1500.tif.aux.xml │ │ │ ├── 3750_1750.tif │ │ │ ├── 3750_1750.tif.aux.xml │ │ │ ├── 3750_2000.tif │ │ │ ├── 3750_2000.tif.aux.xml │ │ │ ├── 3750_2250.tif │ │ │ ├── 3750_2250.tif.aux.xml │ │ │ ├── 3750_250.tif │ │ │ ├── 3750_250.tif.aux.xml │ │ │ ├── 3750_2500.tif │ │ │ ├── 3750_2500.tif.aux.xml │ │ │ ├── 3750_2750.tif │ │ │ ├── 3750_2750.tif.aux.xml │ │ │ ├── 3750_3000.tif │ │ │ ├── 3750_3000.tif.aux.xml │ │ │ ├── 3750_3250.tif │ │ │ ├── 3750_3250.tif.aux.xml │ │ │ ├── 3750_3500.tif │ │ │ ├── 3750_3500.tif.aux.xml │ │ │ ├── 3750_3750.tif │ │ │ ├── 3750_3750.tif.aux.xml │ │ │ ├── 3750_4000.tif │ │ │ ├── 3750_4000.tif.aux.xml │ │ │ ├── 3750_4250.tif │ │ │ ├── 3750_4250.tif.aux.xml │ │ │ ├── 3750_4500.tif │ │ │ ├── 3750_4500.tif.aux.xml │ │ │ ├── 3750_4750.tif │ │ │ ├── 3750_4750.tif.aux.xml │ │ │ ├── 3750_500.tif │ │ │ ├── 3750_500.tif.aux.xml │ │ │ ├── 3750_750.tif │ │ │ ├── 3750_750.tif.aux.xml │ │ │ ├── 4000_0.tif │ │ │ ├── 4000_0.tif.aux.xml │ │ │ ├── 4000_1000.tif │ │ │ ├── 4000_1000.tif.aux.xml │ │ │ ├── 4000_1250.tif │ │ │ ├── 4000_1250.tif.aux.xml │ │ │ ├── 4000_1500.tif │ │ │ ├── 4000_1500.tif.aux.xml │ │ │ ├── 4000_1750.tif │ │ │ ├── 4000_1750.tif.aux.xml │ │ │ ├── 4000_2000.tif │ │ │ ├── 4000_2000.tif.aux.xml │ │ │ ├── 4000_2250.tif │ │ │ ├── 4000_2250.tif.aux.xml │ │ │ ├── 4000_250.tif │ │ │ ├── 4000_250.tif.aux.xml │ │ │ ├── 4000_2500.tif │ │ │ ├── 4000_2500.tif.aux.xml │ │ │ ├── 4000_2750.tif │ │ │ ├── 4000_2750.tif.aux.xml │ │ │ ├── 4000_3000.tif │ │ │ ├── 4000_3000.tif.aux.xml │ │ │ ├── 4000_3250.tif │ │ │ ├── 4000_3250.tif.aux.xml │ │ │ ├── 4000_3500.tif │ │ │ ├── 4000_3500.tif.aux.xml │ │ │ ├── 4000_3750.tif │ │ │ ├── 4000_3750.tif.aux.xml │ │ │ ├── 4000_4000.tif │ │ │ ├── 4000_4000.tif.aux.xml │ │ │ ├── 4000_4250.tif │ │ │ ├── 4000_4250.tif.aux.xml │ │ │ ├── 4000_4500.tif │ │ │ ├── 4000_4500.tif.aux.xml │ │ │ ├── 4000_4750.tif │ │ │ ├── 4000_4750.tif.aux.xml │ │ │ ├── 4000_500.tif │ │ │ ├── 4000_500.tif.aux.xml │ │ │ ├── 4000_750.tif │ │ │ ├── 4000_750.tif.aux.xml │ │ │ ├── 4250_0.tif │ │ │ ├── 4250_0.tif.aux.xml │ │ │ ├── 4250_1000.tif │ │ │ ├── 4250_1000.tif.aux.xml │ │ │ ├── 4250_1250.tif │ │ │ ├── 4250_1250.tif.aux.xml │ │ │ ├── 4250_1500.tif │ │ │ ├── 4250_1500.tif.aux.xml │ │ │ ├── 4250_1750.tif │ │ │ ├── 4250_1750.tif.aux.xml │ │ │ ├── 4250_2000.tif │ │ │ ├── 4250_2000.tif.aux.xml │ │ │ ├── 4250_2250.tif │ │ │ ├── 4250_2250.tif.aux.xml │ │ │ ├── 4250_250.tif │ │ │ ├── 4250_250.tif.aux.xml │ │ │ ├── 4250_2500.tif │ │ │ ├── 4250_2500.tif.aux.xml │ │ │ ├── 4250_2750.tif │ │ │ ├── 4250_2750.tif.aux.xml │ │ │ ├── 4250_3000.tif │ │ │ ├── 4250_3000.tif.aux.xml │ │ │ ├── 4250_3250.tif │ │ │ ├── 4250_3250.tif.aux.xml │ │ │ ├── 4250_3500.tif │ │ │ ├── 4250_3500.tif.aux.xml │ │ │ ├── 4250_3750.tif │ │ │ ├── 4250_3750.tif.aux.xml │ │ │ ├── 4250_4000.tif │ │ │ ├── 4250_4000.tif.aux.xml │ │ │ ├── 4250_4250.tif │ │ │ ├── 4250_4250.tif.aux.xml │ │ │ ├── 4250_4500.tif │ │ │ ├── 4250_4500.tif.aux.xml │ │ │ ├── 4250_4750.tif │ │ │ ├── 4250_4750.tif.aux.xml │ │ │ ├── 4250_500.tif │ │ │ ├── 4250_500.tif.aux.xml │ │ │ ├── 4250_750.tif │ │ │ ├── 4250_750.tif.aux.xml │ │ │ ├── 4500_0.tif │ │ │ ├── 4500_0.tif.aux.xml │ │ │ ├── 4500_1000.tif │ │ │ ├── 4500_1000.tif.aux.xml │ │ │ ├── 4500_1250.tif │ │ │ ├── 4500_1250.tif.aux.xml │ │ │ ├── 4500_1500.tif │ │ │ ├── 4500_1500.tif.aux.xml │ │ │ ├── 4500_1750.tif │ │ │ ├── 4500_1750.tif.aux.xml │ │ │ ├── 4500_2000.tif │ │ │ ├── 4500_2000.tif.aux.xml │ │ │ ├── 4500_2250.tif │ │ │ ├── 4500_2250.tif.aux.xml │ │ │ ├── 4500_250.tif │ │ │ ├── 4500_250.tif.aux.xml │ │ │ ├── 4500_2500.tif │ │ │ ├── 4500_2500.tif.aux.xml │ │ │ ├── 4500_2750.tif │ │ │ ├── 4500_2750.tif.aux.xml │ │ │ ├── 4500_3000.tif │ │ │ ├── 4500_3000.tif.aux.xml │ │ │ ├── 4500_3250.tif │ │ │ ├── 4500_3250.tif.aux.xml │ │ │ ├── 4500_3500.tif │ │ │ ├── 4500_3500.tif.aux.xml │ │ │ ├── 4500_3750.tif │ │ │ ├── 4500_3750.tif.aux.xml │ │ │ ├── 4500_4000.tif │ │ │ ├── 4500_4000.tif.aux.xml │ │ │ ├── 4500_4250.tif │ │ │ ├── 4500_4250.tif.aux.xml │ │ │ ├── 4500_4500.tif │ │ │ ├── 4500_4500.tif.aux.xml │ │ │ ├── 4500_4750.tif │ │ │ ├── 4500_4750.tif.aux.xml │ │ │ ├── 4500_500.tif │ │ │ ├── 4500_500.tif.aux.xml │ │ │ ├── 4500_750.tif │ │ │ ├── 4500_750.tif.aux.xml │ │ │ ├── 4750_0.tif │ │ │ ├── 4750_0.tif.aux.xml │ │ │ ├── 4750_1000.tif │ │ │ ├── 4750_1000.tif.aux.xml │ │ │ ├── 4750_1250.tif │ │ │ ├── 4750_1250.tif.aux.xml │ │ │ ├── 4750_1500.tif │ │ │ ├── 4750_1500.tif.aux.xml │ │ │ ├── 4750_1750.tif │ │ │ ├── 4750_1750.tif.aux.xml │ │ │ ├── 4750_2000.tif │ │ │ ├── 4750_2000.tif.aux.xml │ │ │ ├── 4750_2250.tif │ │ │ ├── 4750_2250.tif.aux.xml │ │ │ ├── 4750_250.tif │ │ │ ├── 4750_250.tif.aux.xml │ │ │ ├── 4750_2500.tif │ │ │ ├── 4750_2500.tif.aux.xml │ │ │ ├── 4750_2750.tif │ │ │ ├── 4750_2750.tif.aux.xml │ │ │ ├── 4750_3000.tif │ │ │ ├── 4750_3000.tif.aux.xml │ │ │ ├── 4750_3250.tif │ │ │ ├── 4750_3250.tif.aux.xml │ │ │ ├── 4750_3500.tif │ │ │ ├── 4750_3500.tif.aux.xml │ │ │ ├── 4750_3750.tif │ │ │ ├── 4750_3750.tif.aux.xml │ │ │ ├── 4750_4000.tif │ │ │ ├── 4750_4000.tif.aux.xml │ │ │ ├── 4750_4250.tif │ │ │ ├── 4750_4250.tif.aux.xml │ │ │ ├── 4750_4500.tif │ │ │ ├── 4750_4500.tif.aux.xml │ │ │ ├── 4750_4750.tif │ │ │ ├── 4750_4750.tif.aux.xml │ │ │ ├── 4750_500.tif │ │ │ ├── 4750_500.tif.aux.xml │ │ │ ├── 4750_750.tif │ │ │ ├── 4750_750.tif.aux.xml │ │ │ ├── 500_0.tif │ │ │ ├── 500_0.tif.aux.xml │ │ │ ├── 500_1000.tif │ │ │ ├── 500_1000.tif.aux.xml │ │ │ ├── 500_1250.tif │ │ │ ├── 500_1250.tif.aux.xml │ │ │ ├── 500_1500.tif │ │ │ ├── 500_1500.tif.aux.xml │ │ │ ├── 500_1750.tif │ │ │ ├── 500_1750.tif.aux.xml │ │ │ ├── 500_2000.tif │ │ │ ├── 500_2000.tif.aux.xml │ │ │ ├── 500_2250.tif │ │ │ ├── 500_2250.tif.aux.xml │ │ │ ├── 500_250.tif │ │ │ ├── 500_250.tif.aux.xml │ │ │ ├── 500_2500.tif │ │ │ ├── 500_2500.tif.aux.xml │ │ │ ├── 500_2750.tif │ │ │ ├── 500_2750.tif.aux.xml │ │ │ ├── 500_3000.tif │ │ │ ├── 500_3000.tif.aux.xml │ │ │ ├── 500_3250.tif │ │ │ ├── 500_3250.tif.aux.xml │ │ │ ├── 500_3500.tif │ │ │ ├── 500_3500.tif.aux.xml │ │ │ ├── 500_3750.tif │ │ │ ├── 500_3750.tif.aux.xml │ │ │ ├── 500_4000.tif │ │ │ ├── 500_4000.tif.aux.xml │ │ │ ├── 500_4250.tif │ │ │ ├── 500_4250.tif.aux.xml │ │ │ ├── 500_4500.tif │ │ │ ├── 500_4500.tif.aux.xml │ │ │ ├── 500_4750.tif │ │ │ ├── 500_4750.tif.aux.xml │ │ │ ├── 500_500.tif │ │ │ ├── 500_500.tif.aux.xml │ │ │ ├── 500_750.tif │ │ │ ├── 500_750.tif.aux.xml │ │ │ ├── 750_0.tif │ │ │ ├── 750_0.tif.aux.xml │ │ │ ├── 750_1000.tif │ │ │ ├── 750_1000.tif.aux.xml │ │ │ ├── 750_1250.tif │ │ │ ├── 750_1250.tif.aux.xml │ │ │ ├── 750_1500.tif │ │ │ ├── 750_1500.tif.aux.xml │ │ │ ├── 750_1750.tif │ │ │ ├── 750_1750.tif.aux.xml │ │ │ ├── 750_2000.tif │ │ │ ├── 750_2000.tif.aux.xml │ │ │ ├── 750_2250.tif │ │ │ ├── 750_2250.tif.aux.xml │ │ │ ├── 750_250.tif │ │ │ ├── 750_250.tif.aux.xml │ │ │ ├── 750_2500.tif │ │ │ ├── 750_2500.tif.aux.xml │ │ │ ├── 750_2750.tif │ │ │ ├── 750_2750.tif.aux.xml │ │ │ ├── 750_3000.tif │ │ │ ├── 750_3000.tif.aux.xml │ │ │ ├── 750_3250.tif │ │ │ ├── 750_3250.tif.aux.xml │ │ │ ├── 750_3500.tif │ │ │ ├── 750_3500.tif.aux.xml │ │ │ ├── 750_3750.tif │ │ │ ├── 750_3750.tif.aux.xml │ │ │ ├── 750_4000.tif │ │ │ ├── 750_4000.tif.aux.xml │ │ │ ├── 750_4250.tif │ │ │ ├── 750_4250.tif.aux.xml │ │ │ ├── 750_4500.tif │ │ │ ├── 750_4500.tif.aux.xml │ │ │ ├── 750_4750.tif │ │ │ ├── 750_4750.tif.aux.xml │ │ │ ├── 750_500.tif │ │ │ ├── 750_500.tif.aux.xml │ │ │ ├── 750_750.tif │ │ │ ├── 750_750.tif.aux.xml │ │ │ ├── index.dbf │ │ │ ├── index.prj │ │ │ ├── index.shp │ │ │ └── index.shx │ │ └── us.tmax_nohads_ll_20100506_float.tif │ ├── state_info.csv │ └── vector │ │ ├── RI.json │ │ ├── bay_area_counties.geojson │ │ ├── bay_area_zips.geojson │ │ ├── carlyle_lake.geojson │ │ ├── cb_2014_us_state_20m.zip │ │ ├── cb_2014_us_state_500k.zip │ │ ├── clu │ │ ├── clu_public_a_co095.dbf │ │ ├── clu_public_a_co095.prj │ │ ├── clu_public_a_co095.shp │ │ ├── clu_public_a_co095.shx │ │ ├── clu_public_a_il189.dbf │ │ ├── clu_public_a_il189.prj │ │ ├── clu_public_a_il189.shp │ │ ├── clu_public_a_il189.shx │ │ ├── four_shapes_2il_2ca.geojson │ │ └── four_shapes_2il_2ca.p │ │ ├── co_ne_border.geojson │ │ ├── gz_2010_us_040_00_500k.json │ │ ├── il.geojson │ │ ├── small_polygon.geojson │ │ ├── test_shape.json │ │ └── test_soils.json ├── test_area.py ├── test_fileutils.py ├── test_raster.py ├── test_raster_band.py ├── test_raster_query.py ├── test_small_polygons.py ├── test_tiled.py ├── test_tiledwebraster.py ├── test_vector.py └── test_visualize.py ├── test_build └── test_pypi_build /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/CHANGES.txt -------------------------------------------------------------------------------- /clean_pyc: -------------------------------------------------------------------------------- 1 | find . | grep "\.pyc" | xargs rm 2 | find . | grep "~$" | xargs rm 3 | -------------------------------------------------------------------------------- /docs/apidoc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sphinx-apidoc -o . ../pyspatial 3 | -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- 1 | LICENSE 2 | ======= 3 | 4 | .. include:: ../LICENSE.txt 5 | -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- 1 | pyspatial 2 | ========= 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | pyspatial 8 | -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /pyspatial/py3.py: -------------------------------------------------------------------------------- 1 | try: 2 | from urlparse import urlparse 3 | except ImportError: 4 | # Python3 5 | from urllib.parse import urlparse 6 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | mock 2 | sphinx_rtd_theme 3 | recommonmark 4 | numpy 5 | smart_open 6 | Sphinx==1.3.5 7 | nose==1.3.4 8 | nose-timer==0.5.0 9 | -------------------------------------------------------------------------------- /scripts/make_catalog_file: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python create_catalog.py ../test/data/raster/95000_45000.tif --dest ../test/catalog --tiles ../test/data/raster/tiled/ 3 | -------------------------------------------------------------------------------- /scripts/make_index: -------------------------------------------------------------------------------- 1 | gdaltindex -t_srs "EPSG:4326" -f "GeoJSON" "../test/data/raster/95000_45000.tif.index.json" data/raster/tiled/*.tif 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | 4 | [metadata] 5 | description-file = README.md 6 | -------------------------------------------------------------------------------- /test/data/raster/95000_45000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/95000_45000.tif -------------------------------------------------------------------------------- /test/data/raster/95000_45000_rgb.tif.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/95000_45000_rgb.tif.gz -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_10500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/63500_10500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_11000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/63500_11000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_11500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/63500_11500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_12000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/63500_12000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_12500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/63500_12500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_9500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/63500_9500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_10000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/64000_10000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_10500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/64000_10500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_11000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/64000_11000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_11500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/64000_11500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_12000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/64000_12000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_12500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/64000_12500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_9500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/co_soil_tiled/64000_9500.tif -------------------------------------------------------------------------------- /test/data/raster/prism.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/prism.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/0_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/0_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1000_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/1750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2000_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/2750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3000_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2000.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_250.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2500.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2750.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/3750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4000_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/4750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_0.tif.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layer_1 4 | 5 | thematic 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/index.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/index.dbf -------------------------------------------------------------------------------- /test/data/raster/tiled/index.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/index.shp -------------------------------------------------------------------------------- /test/data/raster/tiled/index.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/tiled/index.shx -------------------------------------------------------------------------------- /test/data/raster/us.tmax_nohads_ll_20100506_float.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/raster/us.tmax_nohads_ll_20100506_float.tif -------------------------------------------------------------------------------- /test/data/vector/cb_2014_us_state_20m.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/vector/cb_2014_us_state_20m.zip -------------------------------------------------------------------------------- /test/data/vector/cb_2014_us_state_500k.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/vector/cb_2014_us_state_500k.zip -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_co095.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/vector/clu/clu_public_a_co095.dbf -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_co095.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_co095.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/vector/clu/clu_public_a_co095.shp -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_co095.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/vector/clu/clu_public_a_co095.shx -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_il189.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_il189.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/vector/clu/clu_public_a_il189.shp -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_il189.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/vector/clu/clu_public_a_il189.shx -------------------------------------------------------------------------------- /test/data/vector/clu/four_shapes_2il_2ca.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/8c6d53eeeabf1eedd222db95812453f83a6685bb/test/data/vector/clu/four_shapes_2il_2ca.p -------------------------------------------------------------------------------- /test_pypi_build: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | pip install --upgrade --index-url https://test.pypi.org/simple/ pyspatial 4 | pushd test 5 | nosetests 6 | popd 7 | --------------------------------------------------------------------------------