├── .cache └── v │ └── cache │ └── lastfailed ├── .coverage ├── .coveragerc ├── .ropeproject └── config.py ├── .travis.yml ├── CITATION.cff ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── README.rst ├── docs ├── Makefile ├── environment.yml ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── environment.yml ├── georasters ├── __init__.py └── georasters.py ├── postBuild ├── readthedocs.yml ├── requirements.txt ├── requirements_dev.txt ├── scripts ├── basic_commands.sh ├── coverage.sh ├── release.sh ├── spatial.ipy ├── spatial_script.py ├── test.sh └── trial_test.ipy ├── setup.py ├── tests ├── .coverage ├── __init__.py ├── conftest.py ├── data │ ├── COL.dbf │ ├── COL.prj │ ├── COL.qpj │ ├── COL.shp │ ├── COL.shx │ ├── TUR.dbf │ ├── TUR.prj │ ├── TUR.qpj │ ├── TUR.shp │ ├── TUR.shx │ ├── data1.png │ ├── data2.png │ ├── data3.png │ ├── pre1500.tif │ ├── slope.tif │ └── slope_classes.tif ├── newtest.py └── test_georasters.py ├── try_georasters2.yml └── try_georasters3.yml /.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/.coverage -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/.coveragerc -------------------------------------------------------------------------------- /.ropeproject/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/.ropeproject/config.py -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/.travis.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/environment.yml -------------------------------------------------------------------------------- /georasters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/georasters/__init__.py -------------------------------------------------------------------------------- /georasters/georasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/georasters/georasters.py -------------------------------------------------------------------------------- /postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/postBuild -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /scripts/basic_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/scripts/basic_commands.sh -------------------------------------------------------------------------------- /scripts/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/scripts/coverage.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/spatial.ipy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/scripts/spatial.ipy -------------------------------------------------------------------------------- /scripts/spatial_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/scripts/spatial_script.py -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/trial_test.ipy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/scripts/trial_test.ipy -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/.coverage -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/COL.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/COL.dbf -------------------------------------------------------------------------------- /tests/data/COL.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/COL.prj -------------------------------------------------------------------------------- /tests/data/COL.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/COL.qpj -------------------------------------------------------------------------------- /tests/data/COL.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/COL.shp -------------------------------------------------------------------------------- /tests/data/COL.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/COL.shx -------------------------------------------------------------------------------- /tests/data/TUR.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/TUR.dbf -------------------------------------------------------------------------------- /tests/data/TUR.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/TUR.prj -------------------------------------------------------------------------------- /tests/data/TUR.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/TUR.qpj -------------------------------------------------------------------------------- /tests/data/TUR.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/TUR.shp -------------------------------------------------------------------------------- /tests/data/TUR.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/TUR.shx -------------------------------------------------------------------------------- /tests/data/data1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/data1.png -------------------------------------------------------------------------------- /tests/data/data2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/data2.png -------------------------------------------------------------------------------- /tests/data/data3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/data3.png -------------------------------------------------------------------------------- /tests/data/pre1500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/pre1500.tif -------------------------------------------------------------------------------- /tests/data/slope.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/slope.tif -------------------------------------------------------------------------------- /tests/data/slope_classes.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/data/slope_classes.tif -------------------------------------------------------------------------------- /tests/newtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/newtest.py -------------------------------------------------------------------------------- /tests/test_georasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/tests/test_georasters.py -------------------------------------------------------------------------------- /try_georasters2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/try_georasters2.yml -------------------------------------------------------------------------------- /try_georasters3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozak/georasters/HEAD/try_georasters3.yml --------------------------------------------------------------------------------