├── .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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GDAL_COOKBOOK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/GDAL_COOKBOOK.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/README.md -------------------------------------------------------------------------------- /clean_pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/clean_pyc -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/install-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docker/install-base.sh -------------------------------------------------------------------------------- /docker/install-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docker/install-python.sh -------------------------------------------------------------------------------- /docker/jupyter/certs/jupyter.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docker/jupyter/certs/jupyter.key -------------------------------------------------------------------------------- /docker/jupyter/certs/jupyter.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docker/jupyter/certs/jupyter.pem -------------------------------------------------------------------------------- /docker/jupyter/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docker/jupyter/jupyter_notebook_config.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/apidoc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sphinx-apidoc -o . ../pyspatial 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/pyspatial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/docs/pyspatial.rst -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /examples/creating_a_tiled_raster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/examples/creating_a_tiled_raster.ipynb -------------------------------------------------------------------------------- /examples/gdal2tiles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/examples/gdal2tiles.ipynb -------------------------------------------------------------------------------- /examples/leaflet_styles_and_markers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/examples/leaflet_styles_and_markers.ipynb -------------------------------------------------------------------------------- /examples/pyspatial_overview.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/examples/pyspatial_overview.ipynb -------------------------------------------------------------------------------- /examples/query_rgb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/examples/query_rgb.ipynb -------------------------------------------------------------------------------- /pyspatial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/__init__.py -------------------------------------------------------------------------------- /pyspatial/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/dataset.py -------------------------------------------------------------------------------- /pyspatial/fileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/fileutils.py -------------------------------------------------------------------------------- /pyspatial/geoio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/geoio.py -------------------------------------------------------------------------------- /pyspatial/globalmaptiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/globalmaptiles.py -------------------------------------------------------------------------------- /pyspatial/py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/py3.py -------------------------------------------------------------------------------- /pyspatial/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/raster.py -------------------------------------------------------------------------------- /pyspatial/spatiallib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/spatiallib.c -------------------------------------------------------------------------------- /pyspatial/spatiallib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/spatiallib.html -------------------------------------------------------------------------------- /pyspatial/spatiallib.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/spatiallib.pyx -------------------------------------------------------------------------------- /pyspatial/templates/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/templates/app.js -------------------------------------------------------------------------------- /pyspatial/templates/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/templates/css/base.css -------------------------------------------------------------------------------- /pyspatial/templates/css/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/templates/css/table.css -------------------------------------------------------------------------------- /pyspatial/templates/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/templates/data.json -------------------------------------------------------------------------------- /pyspatial/templates/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/templates/map.html -------------------------------------------------------------------------------- /pyspatial/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/utils.py -------------------------------------------------------------------------------- /pyspatial/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/vector.py -------------------------------------------------------------------------------- /pyspatial/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/pyspatial/visualize.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-py3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/requirements-py3.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/create_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/scripts/create_catalog.py -------------------------------------------------------------------------------- /scripts/create_catalog_for_gdal2tiles_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/scripts/create_catalog_for_gdal2tiles_tiles.py -------------------------------------------------------------------------------- /scripts/gdal2tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/scripts/gdal2tiles.py -------------------------------------------------------------------------------- /scripts/make_catalog_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/scripts/make_catalog_file -------------------------------------------------------------------------------- /scripts/make_index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/scripts/make_index -------------------------------------------------------------------------------- /scripts/requirements-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/scripts/requirements-ubuntu.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | 4 | [metadata] 5 | description-file = README.md 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/setup.py -------------------------------------------------------------------------------- /test/catalog/cdl_2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/catalog/cdl_2014.json -------------------------------------------------------------------------------- /test/catalog/cdl_2014_tilepath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/catalog/cdl_2014_tilepath.json -------------------------------------------------------------------------------- /test/catalog/cdl_2014_untiled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/catalog/cdl_2014_untiled.json -------------------------------------------------------------------------------- /test/catalog/cdl_2014_with_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/catalog/cdl_2014_with_index.json -------------------------------------------------------------------------------- /test/catalog/co_soil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/catalog/co_soil.json -------------------------------------------------------------------------------- /test/catalog/co_soil_bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/catalog/co_soil_bad.json -------------------------------------------------------------------------------- /test/catalog/s3_cdl_2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/catalog/s3_cdl_2014.json -------------------------------------------------------------------------------- /test/data/cdl2014clu_public_a_il189.shp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/cdl2014clu_public_a_il189.shp.csv -------------------------------------------------------------------------------- /test/data/expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/expected.csv -------------------------------------------------------------------------------- /test/data/raster/95000_45000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/95000_45000.tif -------------------------------------------------------------------------------- /test/data/raster/95000_45000.tif.index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/95000_45000.tif.index.json -------------------------------------------------------------------------------- /test/data/raster/95000_45000_rgb.tif.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/95000_45000_rgb.tif.gz -------------------------------------------------------------------------------- /test/data/raster/95000_45000_rgb.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/95000_45000_rgb.vrt -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_10500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/63500_10500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_11000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/63500_11000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_11500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/63500_11500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_12000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/63500_12000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_12500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/63500_12500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/63500_9500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/63500_9500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_10000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/64000_10000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_10500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/64000_10500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_11000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/64000_11000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_11500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/64000_11500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_12000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/64000_12000.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_12500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/64000_12500.tif -------------------------------------------------------------------------------- /test/data/raster/co_soil_tiled/64000_9500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/co_soil_tiled/64000_9500.tif -------------------------------------------------------------------------------- /test/data/raster/prism.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/prism.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/0_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/0_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/0_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1000_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1000_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1250_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1250_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1500_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1500_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/1750_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/1750_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2000_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2000_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2250_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2250_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2500_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2500_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/250_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/250_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/2750_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/2750_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3000_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3000_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3250_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3250_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3500_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3500_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/3750_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/3750_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4000_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4000_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4250_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4250_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4500_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4500_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/4750_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/4750_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/500_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/500_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/500_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_0.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_0.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_0.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_1000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_1000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_1250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_1250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_1500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_1500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_1750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_1750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_1750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_2000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_2000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_2250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_2250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_2500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_2500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_2750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_2750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_2750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_3000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_3000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_3250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_3250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_3500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_3500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_3750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_3750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_3750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_4000.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4000.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_4000.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4250.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_4250.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4250.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_4250.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_4500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_4500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_4750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_4750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_4750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_500.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_500.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_500.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/750_750.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_750.tif -------------------------------------------------------------------------------- /test/data/raster/tiled/750_750.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/750_750.tif.aux.xml -------------------------------------------------------------------------------- /test/data/raster/tiled/index.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/index.dbf -------------------------------------------------------------------------------- /test/data/raster/tiled/index.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/index.prj -------------------------------------------------------------------------------- /test/data/raster/tiled/index.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/index.shp -------------------------------------------------------------------------------- /test/data/raster/tiled/index.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/raster/tiled/index.shx -------------------------------------------------------------------------------- /test/data/state_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/state_info.csv -------------------------------------------------------------------------------- /test/data/vector/RI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/RI.json -------------------------------------------------------------------------------- /test/data/vector/bay_area_counties.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/bay_area_counties.geojson -------------------------------------------------------------------------------- /test/data/vector/bay_area_zips.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/bay_area_zips.geojson -------------------------------------------------------------------------------- /test/data/vector/carlyle_lake.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/carlyle_lake.geojson -------------------------------------------------------------------------------- /test/data/vector/cb_2014_us_state_20m.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/cb_2014_us_state_20m.zip -------------------------------------------------------------------------------- /test/data/vector/cb_2014_us_state_500k.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/cb_2014_us_state_500k.zip -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_co095.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/clu/clu_public_a_co095.dbf -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_co095.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/clu/clu_public_a_co095.prj -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_co095.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/clu/clu_public_a_co095.shp -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_co095.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/clu/clu_public_a_co095.shx -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_il189.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/clu/clu_public_a_il189.dbf -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_il189.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/clu/clu_public_a_il189.prj -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_il189.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/clu/clu_public_a_il189.shp -------------------------------------------------------------------------------- /test/data/vector/clu/clu_public_a_il189.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/clu/clu_public_a_il189.shx -------------------------------------------------------------------------------- /test/data/vector/clu/four_shapes_2il_2ca.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/clu/four_shapes_2il_2ca.p -------------------------------------------------------------------------------- /test/data/vector/co_ne_border.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/co_ne_border.geojson -------------------------------------------------------------------------------- /test/data/vector/il.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/il.geojson -------------------------------------------------------------------------------- /test/data/vector/small_polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/small_polygon.geojson -------------------------------------------------------------------------------- /test/data/vector/test_shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/test_shape.json -------------------------------------------------------------------------------- /test/data/vector/test_soils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/data/vector/test_soils.json -------------------------------------------------------------------------------- /test/test_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_area.py -------------------------------------------------------------------------------- /test/test_fileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_fileutils.py -------------------------------------------------------------------------------- /test/test_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_raster.py -------------------------------------------------------------------------------- /test/test_raster_band.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_raster_band.py -------------------------------------------------------------------------------- /test/test_raster_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_raster_query.py -------------------------------------------------------------------------------- /test/test_small_polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_small_polygons.py -------------------------------------------------------------------------------- /test/test_tiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_tiled.py -------------------------------------------------------------------------------- /test/test_tiledwebraster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_tiledwebraster.py -------------------------------------------------------------------------------- /test/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_vector.py -------------------------------------------------------------------------------- /test/test_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test/test_visualize.py -------------------------------------------------------------------------------- /test_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test_build -------------------------------------------------------------------------------- /test_pypi_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granularag/pyspatial/HEAD/test_pypi_build --------------------------------------------------------------------------------