├── .gitignore ├── LICENSE ├── README.rst ├── conf.py ├── docs ├── .config.yml ├── .nojekyll ├── Makefile ├── conf.py ├── docs │ ├── doctrees │ │ ├── environment.pickle │ │ ├── geospatial_learn.doctree │ │ ├── index.doctree │ │ ├── modules.doctree │ │ └── quickstart.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ ├── geospatial_learn.rst.txt │ │ ├── index.rst.txt │ │ ├── modules.rst.txt │ │ └── quickstart.rst.txt │ │ ├── _static │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Light.woff │ │ │ ├── Roboto-Slab-Light.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── Roboto-Slab-Thin.woff │ │ │ ├── Roboto-Slab-Thin.woff2 │ │ │ ├── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ ├── jquery-3.5.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── html5shiv.min.js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ │ ├── genindex.html │ │ ├── geospatial_learn.html │ │ ├── index.html │ │ ├── modules.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── quickstart.html │ │ ├── search.html │ │ └── searchindex.js ├── geospatial_learn.rst ├── index.html ├── index.rst ├── make.bat ├── modules.rst └── quickstart.rst ├── example_notebooks ├── Change_detection.ipynb ├── ObjectClassification.ipynb ├── PointCloudClassification.ipynb ├── edges_and_cropplots.ipynb └── figures │ ├── ArunClasses.png │ ├── ArunRF.png │ ├── ArunTrain.png │ ├── S2Aft.png │ ├── S2Chg.png │ ├── S2Key.png │ ├── S2bfr.png │ ├── SparseWood.png │ ├── llanclass.png │ ├── llanlabel.png │ ├── weetestorig.tif │ └── weetestorig.tif.aux.xml ├── geolearn.bib ├── geolearn_env.yml ├── geolearn_env13.yml ├── geolearn_env_nongpu.yml ├── geospatial_learn.rst ├── geospatial_learn ├── __init__.py ├── convnet.py ├── convutils.py ├── gdal_merge.py ├── handyplots.py ├── learning.py ├── loss.py ├── raster.py ├── shape.py └── utilities.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/README.rst -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/conf.py -------------------------------------------------------------------------------- /docs/.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/.config.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/docs/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/docs/doctrees/geospatial_learn.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/doctrees/geospatial_learn.doctree -------------------------------------------------------------------------------- /docs/docs/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/docs/doctrees/modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/doctrees/modules.doctree -------------------------------------------------------------------------------- /docs/docs/doctrees/quickstart.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/doctrees/quickstart.doctree -------------------------------------------------------------------------------- /docs/docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/docs/html/_sources/geospatial_learn.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_sources/geospatial_learn.rst.txt -------------------------------------------------------------------------------- /docs/docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/docs/html/_sources/modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_sources/modules.rst.txt -------------------------------------------------------------------------------- /docs/docs/html/_sources/quickstart.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_sources/quickstart.rst.txt -------------------------------------------------------------------------------- /docs/docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Roboto-Slab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Roboto-Slab-Light.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Roboto-Slab-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Roboto-Slab-Light.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Roboto-Slab-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Roboto-Slab-Thin.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/Roboto-Slab-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/Roboto-Slab-Thin.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/docs/html/_static/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/docs/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/docs/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/docs/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/docs/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/docs/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/docs/html/geospatial_learn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/geospatial_learn.html -------------------------------------------------------------------------------- /docs/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/index.html -------------------------------------------------------------------------------- /docs/docs/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/modules.html -------------------------------------------------------------------------------- /docs/docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/docs/html/quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/quickstart.html -------------------------------------------------------------------------------- /docs/docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/search.html -------------------------------------------------------------------------------- /docs/docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/geospatial_learn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/geospatial_learn.rst -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /example_notebooks/Change_detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/Change_detection.ipynb -------------------------------------------------------------------------------- /example_notebooks/ObjectClassification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/ObjectClassification.ipynb -------------------------------------------------------------------------------- /example_notebooks/PointCloudClassification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/PointCloudClassification.ipynb -------------------------------------------------------------------------------- /example_notebooks/edges_and_cropplots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/edges_and_cropplots.ipynb -------------------------------------------------------------------------------- /example_notebooks/figures/ArunClasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/ArunClasses.png -------------------------------------------------------------------------------- /example_notebooks/figures/ArunRF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/ArunRF.png -------------------------------------------------------------------------------- /example_notebooks/figures/ArunTrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/ArunTrain.png -------------------------------------------------------------------------------- /example_notebooks/figures/S2Aft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/S2Aft.png -------------------------------------------------------------------------------- /example_notebooks/figures/S2Chg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/S2Chg.png -------------------------------------------------------------------------------- /example_notebooks/figures/S2Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/S2Key.png -------------------------------------------------------------------------------- /example_notebooks/figures/S2bfr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/S2bfr.png -------------------------------------------------------------------------------- /example_notebooks/figures/SparseWood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/SparseWood.png -------------------------------------------------------------------------------- /example_notebooks/figures/llanclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/llanclass.png -------------------------------------------------------------------------------- /example_notebooks/figures/llanlabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/llanlabel.png -------------------------------------------------------------------------------- /example_notebooks/figures/weetestorig.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/weetestorig.tif -------------------------------------------------------------------------------- /example_notebooks/figures/weetestorig.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/example_notebooks/figures/weetestorig.tif.aux.xml -------------------------------------------------------------------------------- /geolearn.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geolearn.bib -------------------------------------------------------------------------------- /geolearn_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geolearn_env.yml -------------------------------------------------------------------------------- /geolearn_env13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geolearn_env13.yml -------------------------------------------------------------------------------- /geolearn_env_nongpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geolearn_env_nongpu.yml -------------------------------------------------------------------------------- /geospatial_learn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn.rst -------------------------------------------------------------------------------- /geospatial_learn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geospatial_learn/convnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn/convnet.py -------------------------------------------------------------------------------- /geospatial_learn/convutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn/convutils.py -------------------------------------------------------------------------------- /geospatial_learn/gdal_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn/gdal_merge.py -------------------------------------------------------------------------------- /geospatial_learn/handyplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn/handyplots.py -------------------------------------------------------------------------------- /geospatial_learn/learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn/learning.py -------------------------------------------------------------------------------- /geospatial_learn/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn/loss.py -------------------------------------------------------------------------------- /geospatial_learn/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn/raster.py -------------------------------------------------------------------------------- /geospatial_learn/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn/shape.py -------------------------------------------------------------------------------- /geospatial_learn/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/geospatial_learn/utilities.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR10-dv/geospatial-learn/HEAD/setup.py --------------------------------------------------------------------------------