├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── intro.rst ├── lib.rst ├── lib │ ├── filtlib.rst │ ├── geolib.rst │ ├── iolib.rst │ ├── malib.rst │ ├── timelib.rst │ └── warplib.rst ├── readme.md ├── requirements.txt ├── tools.rst └── tools │ ├── apply_mask.rst │ ├── clip_raster_by_shp.rst │ ├── make_stack.rst │ ├── raster2shp.rst │ ├── replace_ndv.rst │ ├── trim_ndv.rst │ └── warptool.rst ├── pygeotools ├── __init__.py ├── apply_mask.py ├── clip_raster_by_shp.py ├── copyproj.py ├── filter.py ├── lib │ ├── __init__.py │ ├── filtlib.py │ ├── geolib.py │ ├── iolib.py │ ├── malib.py │ ├── timelib.py │ └── warplib.py ├── make_stack.py ├── mask_raster.sh ├── ogr_merge.sh ├── proj_select.py ├── raster2shp.py ├── replace_ndv.py ├── trim_ndv.py └── warptool.py ├── setup.py └── tutorial └── python_seminar.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/lib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/lib.rst -------------------------------------------------------------------------------- /docs/lib/filtlib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/lib/filtlib.rst -------------------------------------------------------------------------------- /docs/lib/geolib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/lib/geolib.rst -------------------------------------------------------------------------------- /docs/lib/iolib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/lib/iolib.rst -------------------------------------------------------------------------------- /docs/lib/malib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/lib/malib.rst -------------------------------------------------------------------------------- /docs/lib/timelib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/lib/timelib.rst -------------------------------------------------------------------------------- /docs/lib/warplib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/lib/warplib.rst -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx-argparse 2 | mock 3 | -------------------------------------------------------------------------------- /docs/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/tools.rst -------------------------------------------------------------------------------- /docs/tools/apply_mask.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/tools/apply_mask.rst -------------------------------------------------------------------------------- /docs/tools/clip_raster_by_shp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/tools/clip_raster_by_shp.rst -------------------------------------------------------------------------------- /docs/tools/make_stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/tools/make_stack.rst -------------------------------------------------------------------------------- /docs/tools/raster2shp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/tools/raster2shp.rst -------------------------------------------------------------------------------- /docs/tools/replace_ndv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/tools/replace_ndv.rst -------------------------------------------------------------------------------- /docs/tools/trim_ndv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/tools/trim_ndv.rst -------------------------------------------------------------------------------- /docs/tools/warptool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/docs/tools/warptool.rst -------------------------------------------------------------------------------- /pygeotools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/__init__.py -------------------------------------------------------------------------------- /pygeotools/apply_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/apply_mask.py -------------------------------------------------------------------------------- /pygeotools/clip_raster_by_shp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/clip_raster_by_shp.py -------------------------------------------------------------------------------- /pygeotools/copyproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/copyproj.py -------------------------------------------------------------------------------- /pygeotools/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/filter.py -------------------------------------------------------------------------------- /pygeotools/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/lib/__init__.py -------------------------------------------------------------------------------- /pygeotools/lib/filtlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/lib/filtlib.py -------------------------------------------------------------------------------- /pygeotools/lib/geolib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/lib/geolib.py -------------------------------------------------------------------------------- /pygeotools/lib/iolib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/lib/iolib.py -------------------------------------------------------------------------------- /pygeotools/lib/malib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/lib/malib.py -------------------------------------------------------------------------------- /pygeotools/lib/timelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/lib/timelib.py -------------------------------------------------------------------------------- /pygeotools/lib/warplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/lib/warplib.py -------------------------------------------------------------------------------- /pygeotools/make_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/make_stack.py -------------------------------------------------------------------------------- /pygeotools/mask_raster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/mask_raster.sh -------------------------------------------------------------------------------- /pygeotools/ogr_merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/ogr_merge.sh -------------------------------------------------------------------------------- /pygeotools/proj_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/proj_select.py -------------------------------------------------------------------------------- /pygeotools/raster2shp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/raster2shp.py -------------------------------------------------------------------------------- /pygeotools/replace_ndv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/replace_ndv.py -------------------------------------------------------------------------------- /pygeotools/trim_ndv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/trim_ndv.py -------------------------------------------------------------------------------- /pygeotools/warptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/pygeotools/warptool.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/setup.py -------------------------------------------------------------------------------- /tutorial/python_seminar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/pygeotools/HEAD/tutorial/python_seminar.sh --------------------------------------------------------------------------------