├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── bin ├── find_files.py └── run_spectral_conversions.py ├── geoio ├── __init__.py ├── _version.py ├── base.py ├── constants.py ├── dg.py ├── downsample.py ├── downsample_numba.py ├── geoio_to_be_added │ └── planckscale.py ├── landsat.py ├── nwl_dgacomp_batch.pro ├── plotting.py ├── tests │ ├── __init__.py │ ├── test_downsample.py │ ├── test_geoio_medium.py │ └── test_geoio_small.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/README.rst -------------------------------------------------------------------------------- /bin/find_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/bin/find_files.py -------------------------------------------------------------------------------- /bin/run_spectral_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/bin/run_spectral_conversions.py -------------------------------------------------------------------------------- /geoio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/__init__.py -------------------------------------------------------------------------------- /geoio/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.2.6' 2 | -------------------------------------------------------------------------------- /geoio/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/base.py -------------------------------------------------------------------------------- /geoio/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/constants.py -------------------------------------------------------------------------------- /geoio/dg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/dg.py -------------------------------------------------------------------------------- /geoio/downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/downsample.py -------------------------------------------------------------------------------- /geoio/downsample_numba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/downsample_numba.py -------------------------------------------------------------------------------- /geoio/geoio_to_be_added/planckscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/geoio_to_be_added/planckscale.py -------------------------------------------------------------------------------- /geoio/landsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/landsat.py -------------------------------------------------------------------------------- /geoio/nwl_dgacomp_batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/nwl_dgacomp_batch.pro -------------------------------------------------------------------------------- /geoio/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/plotting.py -------------------------------------------------------------------------------- /geoio/tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'nlongbotham' 2 | -------------------------------------------------------------------------------- /geoio/tests/test_downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/tests/test_downsample.py -------------------------------------------------------------------------------- /geoio/tests/test_geoio_medium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/tests/test_geoio_medium.py -------------------------------------------------------------------------------- /geoio/tests/test_geoio_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/tests/test_geoio_small.py -------------------------------------------------------------------------------- /geoio/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/geoio/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalGlobe/geoio/HEAD/setup.py --------------------------------------------------------------------------------