├── .gitignore ├── LICENSE ├── README.md ├── doc ├── Makefile ├── conf.py ├── genericraster.rst ├── index.rst ├── install.rst └── rsraster.rst ├── pygaarst ├── __init__.py ├── ali.py ├── basemaputils.py ├── data │ ├── Hyperion_Spectral_Coverage.tab │ └── Hyperion_Spectral_Irradiance.txt ├── geomutils.py ├── geotiff.py ├── hdf4.py ├── hdf5.py ├── hyperion.py ├── hyperionutils.py ├── irutils.py ├── landsat.py ├── landsatutils.py ├── mtlutils.py ├── raster.py ├── rasterhelpers.py ├── usgsl1.py └── vector.py ├── pylintrc ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── data ├── LC8_754_8bit.tiff ├── LC8_test │ ├── LC8_duplicate_empty_MTL.txt │ ├── LC8_test_B10_clip.TIF │ ├── LC8_test_B1_clip.TIF │ ├── LC8_test_B2_clip.TIF │ ├── LC8_test_B3_clip.TIF │ ├── LC8_test_B4_clip.TIF │ ├── LC8_test_B5_clip.TIF │ ├── LC8_test_B7_clip.TIF │ └── LC8_test_MTL.txt ├── bogota_crop.tif ├── shptest.dbf ├── shptest.prj ├── shptest.shp ├── shptest.shx ├── test.tiff ├── testpyM15.h5 └── testpyM15UB.h5 ├── test_ali.py ├── test_basemaputils.py ├── test_geomutils.py ├── test_geotiff.py ├── test_hyperion.py ├── test_landsat.py ├── test_landsatutils.py ├── test_mtlutils.py ├── test_raster.py └── test_vector.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/genericraster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/doc/genericraster.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/doc/install.rst -------------------------------------------------------------------------------- /doc/rsraster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/doc/rsraster.rst -------------------------------------------------------------------------------- /pygaarst/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/__init__.py -------------------------------------------------------------------------------- /pygaarst/ali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/ali.py -------------------------------------------------------------------------------- /pygaarst/basemaputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/basemaputils.py -------------------------------------------------------------------------------- /pygaarst/data/Hyperion_Spectral_Coverage.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/data/Hyperion_Spectral_Coverage.tab -------------------------------------------------------------------------------- /pygaarst/data/Hyperion_Spectral_Irradiance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/data/Hyperion_Spectral_Irradiance.txt -------------------------------------------------------------------------------- /pygaarst/geomutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/geomutils.py -------------------------------------------------------------------------------- /pygaarst/geotiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/geotiff.py -------------------------------------------------------------------------------- /pygaarst/hdf4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/hdf4.py -------------------------------------------------------------------------------- /pygaarst/hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/hdf5.py -------------------------------------------------------------------------------- /pygaarst/hyperion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/hyperion.py -------------------------------------------------------------------------------- /pygaarst/hyperionutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/hyperionutils.py -------------------------------------------------------------------------------- /pygaarst/irutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/irutils.py -------------------------------------------------------------------------------- /pygaarst/landsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/landsat.py -------------------------------------------------------------------------------- /pygaarst/landsatutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/landsatutils.py -------------------------------------------------------------------------------- /pygaarst/mtlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/mtlutils.py -------------------------------------------------------------------------------- /pygaarst/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/raster.py -------------------------------------------------------------------------------- /pygaarst/rasterhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/rasterhelpers.py -------------------------------------------------------------------------------- /pygaarst/usgsl1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/usgsl1.py -------------------------------------------------------------------------------- /pygaarst/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pygaarst/vector.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/LC8_754_8bit.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/LC8_754_8bit.tiff -------------------------------------------------------------------------------- /tests/data/LC8_test/LC8_duplicate_empty_MTL.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/LC8_test/LC8_test_B10_clip.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/LC8_test/LC8_test_B10_clip.TIF -------------------------------------------------------------------------------- /tests/data/LC8_test/LC8_test_B1_clip.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/LC8_test/LC8_test_B1_clip.TIF -------------------------------------------------------------------------------- /tests/data/LC8_test/LC8_test_B2_clip.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/LC8_test/LC8_test_B2_clip.TIF -------------------------------------------------------------------------------- /tests/data/LC8_test/LC8_test_B3_clip.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/LC8_test/LC8_test_B3_clip.TIF -------------------------------------------------------------------------------- /tests/data/LC8_test/LC8_test_B4_clip.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/LC8_test/LC8_test_B4_clip.TIF -------------------------------------------------------------------------------- /tests/data/LC8_test/LC8_test_B5_clip.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/LC8_test/LC8_test_B5_clip.TIF -------------------------------------------------------------------------------- /tests/data/LC8_test/LC8_test_B7_clip.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/LC8_test/LC8_test_B7_clip.TIF -------------------------------------------------------------------------------- /tests/data/LC8_test/LC8_test_MTL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/LC8_test/LC8_test_MTL.txt -------------------------------------------------------------------------------- /tests/data/bogota_crop.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/bogota_crop.tif -------------------------------------------------------------------------------- /tests/data/shptest.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/shptest.dbf -------------------------------------------------------------------------------- /tests/data/shptest.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/shptest.prj -------------------------------------------------------------------------------- /tests/data/shptest.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/shptest.shp -------------------------------------------------------------------------------- /tests/data/shptest.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/shptest.shx -------------------------------------------------------------------------------- /tests/data/test.tiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/testpyM15.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/testpyM15.h5 -------------------------------------------------------------------------------- /tests/data/testpyM15UB.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/data/testpyM15UB.h5 -------------------------------------------------------------------------------- /tests/test_ali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_ali.py -------------------------------------------------------------------------------- /tests/test_basemaputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_basemaputils.py -------------------------------------------------------------------------------- /tests/test_geomutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_geomutils.py -------------------------------------------------------------------------------- /tests/test_geotiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_geotiff.py -------------------------------------------------------------------------------- /tests/test_hyperion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_hyperion.py -------------------------------------------------------------------------------- /tests/test_landsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_landsat.py -------------------------------------------------------------------------------- /tests/test_landsatutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_landsatutils.py -------------------------------------------------------------------------------- /tests/test_mtlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_mtlutils.py -------------------------------------------------------------------------------- /tests/test_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_raster.py -------------------------------------------------------------------------------- /tests/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chryss/pygaarst/HEAD/tests/test_vector.py --------------------------------------------------------------------------------