├── .gitignore ├── .readthedocs.yml ├── LICENSE.txt ├── MANIFEST ├── README.md ├── docs ├── Makefile ├── api.rst ├── conf.py ├── create-georeferenced-data.rst ├── get-started.rst ├── index.rst ├── load-existing-data.rst ├── make.bat └── rtd_environment.yml ├── georaster ├── __init__.py └── georaster.py ├── requirements.txt ├── setup.cfg ├── setup.py └── test ├── data └── LE71400412000304SGS00_B4_crop.TIF └── test_georaster.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | *.egg-info -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/create-georeferenced-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/docs/create-georeferenced-data.rst -------------------------------------------------------------------------------- /docs/get-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/docs/get-started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/load-existing-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/docs/load-existing-data.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/rtd_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/docs/rtd_environment.yml -------------------------------------------------------------------------------- /georaster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/georaster/__init__.py -------------------------------------------------------------------------------- /georaster/georaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/georaster/georaster.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | pyproj -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/setup.py -------------------------------------------------------------------------------- /test/data/LE71400412000304SGS00_B4_crop.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/test/data/LE71400412000304SGS00_B4_crop.TIF -------------------------------------------------------------------------------- /test/test_georaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoUtils/georaster/HEAD/test/test_georaster.py --------------------------------------------------------------------------------