├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── content ├── 01-catalog │ ├── chapter01-landsat.md │ ├── chapter02-sentinel.md │ ├── chapter03-modis.md │ └── chapter04-high-resolution.md ├── 02-strategies │ ├── chapter05-preprocessing-tasks.md │ └── chapter06-tips-and-tricks.md ├── 03-beginner │ ├── chapter07-qualitative-change-detection.md │ ├── chapter08-normalized-difference-vegetation-index.md │ ├── chapter09-image-composites.md │ ├── chapter10-image-mosaics.md │ ├── chapter11-image-collection-iteration.md │ ├── chapter12-cloud-masking.md │ ├── chapter13-data-quality-bitmasks.md │ ├── chapter14-image-to-asset.md │ └── chapter15-image-band-histograms.md ├── 04-intermediate │ ├── chapter16-raster-reprojection-resampling.md │ ├── chapter17-raster-reduce-resolution.md │ ├── chapter18-spectral-indices-math.md │ ├── chapter19-image-region-statistics.md │ ├── chapter20-image-statistics-module.md │ ├── chapter21-data-correlation.md │ ├── chapter22-arrays-tasseled-cap.md │ ├── chapter23-data-conversion-export.md │ └── chapter24-image-collection-export.md ├── 05-advanced │ ├── chapter25-agriculture-boundaries-vaalharts.md │ ├── chapter26-rice-fields-columbia.md │ └── chapter27-alpine-treeline-colorado.md ├── 06-appendices │ ├── appendix-a-acronym-list.md │ └── appendix-b-bibliography.md ├── _build │ ├── .doctrees │ │ ├── 01-catalog │ │ │ ├── chapter01-landsat.doctree │ │ │ ├── chapter02-sentinel.doctree │ │ │ ├── chapter03-modis.doctree │ │ │ └── chapter04-high-resolution.doctree │ │ ├── 02-strategies │ │ │ ├── chapter05-preprocessing-tasks.doctree │ │ │ └── chapter06-tips-and-tricks.doctree │ │ ├── 03-beginner │ │ │ ├── chapter07-qualitative-change-detection.doctree │ │ │ ├── chapter08-normalized-difference-vegetation-index.doctree │ │ │ ├── chapter09-image-composites.doctree │ │ │ ├── chapter10-image-mosaics.doctree │ │ │ ├── chapter11-image-collection-iteration.doctree │ │ │ ├── chapter12-cloud-masking.doctree │ │ │ ├── chapter13-data-quality-bitmasks.doctree │ │ │ ├── chapter14-image-to-asset.doctree │ │ │ └── chapter15-image-band-histograms.doctree │ │ ├── 04-intermediate │ │ │ ├── chapter16-raster-reprojection-resampling.doctree │ │ │ ├── chapter17-raster-reduce-resolution.doctree │ │ │ ├── chapter18-spectral-indices-math.doctree │ │ │ ├── chapter19-image-region-statistics.doctree │ │ │ ├── chapter20-image-statistics-module.doctree │ │ │ ├── chapter21-data-correlation.doctree │ │ │ ├── chapter22-arrays-tasseled-cap.doctree │ │ │ ├── chapter23-data-conversion-export.doctree │ │ │ └── chapter24-image-collection-export.doctree │ │ ├── 05-advanced │ │ │ ├── chapter25-agriculture-boundaries-vaalharts.doctree │ │ │ ├── chapter26-rice-fields-columbia.doctree │ │ │ └── chapter27-alpine-treeline-colorado.doctree │ │ ├── 06-appendices │ │ │ ├── appendix-a-acronym-list.doctree │ │ │ └── appendix-b-bibliography.doctree │ │ ├── environment.pickle │ │ ├── glue_cache.json │ │ └── introduction.doctree │ └── html │ │ ├── .buildinfo │ │ ├── 01-catalog │ │ ├── chapter01-landsat.html │ │ ├── chapter02-sentinel.html │ │ ├── chapter03-modis.html │ │ └── chapter04-high-resolution.html │ │ ├── 02-strategies │ │ ├── chapter05-preprocessing-tasks.html │ │ └── chapter06-tips-and-tricks.html │ │ ├── 03-beginner │ │ ├── chapter07-qualitative-change-detection.html │ │ ├── chapter08-normalized-difference-vegetation-index.html │ │ ├── chapter09-image-composites.html │ │ ├── chapter10-image-mosaics.html │ │ ├── chapter11-image-collection-iteration.html │ │ ├── chapter12-cloud-masking.html │ │ ├── chapter13-data-quality-bitmasks.html │ │ ├── chapter14-image-to-asset.html │ │ └── chapter15-image-band-histograms.html │ │ ├── 04-intermediate │ │ ├── chapter16-raster-reprojection-resampling.html │ │ ├── chapter17-raster-reduce-resolution.html │ │ ├── chapter18-spectral-indices-math.html │ │ ├── chapter19-image-region-statistics.html │ │ ├── chapter20-image-statistics-module.html │ │ ├── chapter21-data-correlation.html │ │ ├── chapter22-arrays-tasseled-cap.html │ │ ├── chapter23-data-conversion-export.html │ │ └── chapter24-image-collection-export.html │ │ ├── 05-advanced │ │ ├── chapter25-agriculture-boundaries-vaalharts.html │ │ ├── chapter26-rice-fields-columbia.html │ │ └── chapter27-alpine-treeline-colorado.html │ │ ├── 06-appendices │ │ ├── appendix-a-acronym-list.html │ │ └── appendix-b-bibliography.html │ │ ├── _images │ │ └── 001-earth-surface-spectra-visible-mid-infrared.jpg │ │ ├── _sources │ │ ├── 01-catalog │ │ │ ├── chapter01-landsat.md │ │ │ ├── chapter02-sentinel.md │ │ │ ├── chapter03-modis.md │ │ │ └── chapter04-high-resolution.md │ │ ├── 02-strategies │ │ │ ├── chapter05-preprocessing-tasks.md │ │ │ └── chapter06-tips-and-tricks.md │ │ ├── 03-beginner │ │ │ ├── chapter07-qualitative-change-detection.md │ │ │ ├── chapter08-normalized-difference-vegetation-index.md │ │ │ ├── chapter09-image-composites.md │ │ │ ├── chapter10-image-mosaics.md │ │ │ ├── chapter11-image-collection-iteration.md │ │ │ ├── chapter12-cloud-masking.md │ │ │ ├── chapter13-data-quality-bitmasks.md │ │ │ ├── chapter14-image-to-asset.md │ │ │ └── chapter15-image-band-histograms.md │ │ ├── 04-intermediate │ │ │ ├── chapter16-raster-reprojection-resampling.md │ │ │ ├── chapter17-raster-reduce-resolution.md │ │ │ ├── chapter18-spectral-indices-math.md │ │ │ ├── chapter19-image-region-statistics.md │ │ │ ├── chapter20-image-statistics-module.md │ │ │ ├── chapter21-data-correlation.md │ │ │ ├── chapter22-arrays-tasseled-cap.md │ │ │ ├── chapter23-data-conversion-export.md │ │ │ └── chapter24-image-collection-export.md │ │ ├── 05-advanced │ │ │ ├── chapter25-agriculture-boundaries-vaalharts.md │ │ │ ├── chapter26-rice-fields-columbia.md │ │ │ └── chapter27-alpine-treeline-colorado.md │ │ ├── 06-appendices │ │ │ ├── appendix-a-acronym-list.md │ │ │ └── appendix-b-bibliography.md │ │ └── introduction.md │ │ ├── _static │ │ ├── basic.css │ │ ├── clipboard.min.js │ │ ├── copy-button.svg │ │ ├── copybutton.css │ │ ├── copybutton.js │ │ ├── copybutton_funcs.js │ │ ├── css │ │ │ └── index.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── images │ │ │ ├── logo_binder.svg │ │ │ ├── logo_colab.png │ │ │ └── logo_jupyterhub.svg │ │ ├── jquery-3.5.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ └── index.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── mystnb.css │ │ ├── panels-bootstrap.min.css │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── sphinx-book-theme.css │ │ ├── sphinx-book-theme.js │ │ ├── sphinx-dropdown.css │ │ ├── sphinx-thebe.css │ │ ├── sphinx-thebe.js │ │ ├── togglebutton.css │ │ ├── togglebutton.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── introduction.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js ├── _config.yml ├── _toc.yml ├── figures │ └── 001-earth-surface-spectra-visible-mid-infrared.jpg ├── introduction.md └── references.bib └── environment.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/README.md -------------------------------------------------------------------------------- /content/01-catalog/chapter01-landsat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/01-catalog/chapter01-landsat.md -------------------------------------------------------------------------------- /content/01-catalog/chapter02-sentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/01-catalog/chapter02-sentinel.md -------------------------------------------------------------------------------- /content/01-catalog/chapter03-modis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/01-catalog/chapter03-modis.md -------------------------------------------------------------------------------- /content/01-catalog/chapter04-high-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/01-catalog/chapter04-high-resolution.md -------------------------------------------------------------------------------- /content/02-strategies/chapter05-preprocessing-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/02-strategies/chapter05-preprocessing-tasks.md -------------------------------------------------------------------------------- /content/02-strategies/chapter06-tips-and-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/02-strategies/chapter06-tips-and-tricks.md -------------------------------------------------------------------------------- /content/03-beginner/chapter07-qualitative-change-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/03-beginner/chapter07-qualitative-change-detection.md -------------------------------------------------------------------------------- /content/03-beginner/chapter08-normalized-difference-vegetation-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/03-beginner/chapter08-normalized-difference-vegetation-index.md -------------------------------------------------------------------------------- /content/03-beginner/chapter09-image-composites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/03-beginner/chapter09-image-composites.md -------------------------------------------------------------------------------- /content/03-beginner/chapter10-image-mosaics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/03-beginner/chapter10-image-mosaics.md -------------------------------------------------------------------------------- /content/03-beginner/chapter11-image-collection-iteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/03-beginner/chapter11-image-collection-iteration.md -------------------------------------------------------------------------------- /content/03-beginner/chapter12-cloud-masking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/03-beginner/chapter12-cloud-masking.md -------------------------------------------------------------------------------- /content/03-beginner/chapter13-data-quality-bitmasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/03-beginner/chapter13-data-quality-bitmasks.md -------------------------------------------------------------------------------- /content/03-beginner/chapter14-image-to-asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/03-beginner/chapter14-image-to-asset.md -------------------------------------------------------------------------------- /content/03-beginner/chapter15-image-band-histograms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/03-beginner/chapter15-image-band-histograms.md -------------------------------------------------------------------------------- /content/04-intermediate/chapter16-raster-reprojection-resampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/04-intermediate/chapter16-raster-reprojection-resampling.md -------------------------------------------------------------------------------- /content/04-intermediate/chapter17-raster-reduce-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/04-intermediate/chapter17-raster-reduce-resolution.md -------------------------------------------------------------------------------- /content/04-intermediate/chapter18-spectral-indices-math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/04-intermediate/chapter18-spectral-indices-math.md -------------------------------------------------------------------------------- /content/04-intermediate/chapter19-image-region-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/04-intermediate/chapter19-image-region-statistics.md -------------------------------------------------------------------------------- /content/04-intermediate/chapter20-image-statistics-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/04-intermediate/chapter20-image-statistics-module.md -------------------------------------------------------------------------------- /content/04-intermediate/chapter21-data-correlation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/04-intermediate/chapter21-data-correlation.md -------------------------------------------------------------------------------- /content/04-intermediate/chapter22-arrays-tasseled-cap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/04-intermediate/chapter22-arrays-tasseled-cap.md -------------------------------------------------------------------------------- /content/04-intermediate/chapter23-data-conversion-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/04-intermediate/chapter23-data-conversion-export.md -------------------------------------------------------------------------------- /content/04-intermediate/chapter24-image-collection-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/04-intermediate/chapter24-image-collection-export.md -------------------------------------------------------------------------------- /content/05-advanced/chapter25-agriculture-boundaries-vaalharts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/05-advanced/chapter25-agriculture-boundaries-vaalharts.md -------------------------------------------------------------------------------- /content/05-advanced/chapter26-rice-fields-columbia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/05-advanced/chapter26-rice-fields-columbia.md -------------------------------------------------------------------------------- /content/05-advanced/chapter27-alpine-treeline-colorado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/05-advanced/chapter27-alpine-treeline-colorado.md -------------------------------------------------------------------------------- /content/06-appendices/appendix-a-acronym-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/06-appendices/appendix-a-acronym-list.md -------------------------------------------------------------------------------- /content/06-appendices/appendix-b-bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/06-appendices/appendix-b-bibliography.md -------------------------------------------------------------------------------- /content/_build/.doctrees/01-catalog/chapter01-landsat.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/01-catalog/chapter01-landsat.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/01-catalog/chapter02-sentinel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/01-catalog/chapter02-sentinel.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/01-catalog/chapter03-modis.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/01-catalog/chapter03-modis.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/01-catalog/chapter04-high-resolution.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/01-catalog/chapter04-high-resolution.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/02-strategies/chapter05-preprocessing-tasks.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/02-strategies/chapter05-preprocessing-tasks.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/02-strategies/chapter06-tips-and-tricks.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/02-strategies/chapter06-tips-and-tricks.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/03-beginner/chapter07-qualitative-change-detection.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/03-beginner/chapter07-qualitative-change-detection.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/03-beginner/chapter08-normalized-difference-vegetation-index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/03-beginner/chapter08-normalized-difference-vegetation-index.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/03-beginner/chapter09-image-composites.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/03-beginner/chapter09-image-composites.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/03-beginner/chapter10-image-mosaics.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/03-beginner/chapter10-image-mosaics.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/03-beginner/chapter11-image-collection-iteration.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/03-beginner/chapter11-image-collection-iteration.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/03-beginner/chapter12-cloud-masking.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/03-beginner/chapter12-cloud-masking.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/03-beginner/chapter13-data-quality-bitmasks.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/03-beginner/chapter13-data-quality-bitmasks.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/03-beginner/chapter14-image-to-asset.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/03-beginner/chapter14-image-to-asset.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/03-beginner/chapter15-image-band-histograms.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/03-beginner/chapter15-image-band-histograms.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/04-intermediate/chapter16-raster-reprojection-resampling.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/04-intermediate/chapter16-raster-reprojection-resampling.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/04-intermediate/chapter17-raster-reduce-resolution.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/04-intermediate/chapter17-raster-reduce-resolution.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/04-intermediate/chapter18-spectral-indices-math.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/04-intermediate/chapter18-spectral-indices-math.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/04-intermediate/chapter19-image-region-statistics.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/04-intermediate/chapter19-image-region-statistics.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/04-intermediate/chapter20-image-statistics-module.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/04-intermediate/chapter20-image-statistics-module.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/04-intermediate/chapter21-data-correlation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/04-intermediate/chapter21-data-correlation.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/04-intermediate/chapter22-arrays-tasseled-cap.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/04-intermediate/chapter22-arrays-tasseled-cap.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/04-intermediate/chapter23-data-conversion-export.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/04-intermediate/chapter23-data-conversion-export.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/04-intermediate/chapter24-image-collection-export.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/04-intermediate/chapter24-image-collection-export.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/05-advanced/chapter25-agriculture-boundaries-vaalharts.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/05-advanced/chapter25-agriculture-boundaries-vaalharts.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/05-advanced/chapter26-rice-fields-columbia.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/05-advanced/chapter26-rice-fields-columbia.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/05-advanced/chapter27-alpine-treeline-colorado.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/05-advanced/chapter27-alpine-treeline-colorado.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/06-appendices/appendix-a-acronym-list.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/06-appendices/appendix-a-acronym-list.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/06-appendices/appendix-b-bibliography.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/06-appendices/appendix-b-bibliography.doctree -------------------------------------------------------------------------------- /content/_build/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/environment.pickle -------------------------------------------------------------------------------- /content/_build/.doctrees/glue_cache.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /content/_build/.doctrees/introduction.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/.doctrees/introduction.doctree -------------------------------------------------------------------------------- /content/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/.buildinfo -------------------------------------------------------------------------------- /content/_build/html/01-catalog/chapter01-landsat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/01-catalog/chapter01-landsat.html -------------------------------------------------------------------------------- /content/_build/html/01-catalog/chapter02-sentinel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/01-catalog/chapter02-sentinel.html -------------------------------------------------------------------------------- /content/_build/html/01-catalog/chapter03-modis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/01-catalog/chapter03-modis.html -------------------------------------------------------------------------------- /content/_build/html/01-catalog/chapter04-high-resolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/01-catalog/chapter04-high-resolution.html -------------------------------------------------------------------------------- /content/_build/html/02-strategies/chapter05-preprocessing-tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/02-strategies/chapter05-preprocessing-tasks.html -------------------------------------------------------------------------------- /content/_build/html/02-strategies/chapter06-tips-and-tricks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/02-strategies/chapter06-tips-and-tricks.html -------------------------------------------------------------------------------- /content/_build/html/03-beginner/chapter07-qualitative-change-detection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/03-beginner/chapter07-qualitative-change-detection.html -------------------------------------------------------------------------------- /content/_build/html/03-beginner/chapter08-normalized-difference-vegetation-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/03-beginner/chapter08-normalized-difference-vegetation-index.html -------------------------------------------------------------------------------- /content/_build/html/03-beginner/chapter09-image-composites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/03-beginner/chapter09-image-composites.html -------------------------------------------------------------------------------- /content/_build/html/03-beginner/chapter10-image-mosaics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/03-beginner/chapter10-image-mosaics.html -------------------------------------------------------------------------------- /content/_build/html/03-beginner/chapter11-image-collection-iteration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/03-beginner/chapter11-image-collection-iteration.html -------------------------------------------------------------------------------- /content/_build/html/03-beginner/chapter12-cloud-masking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/03-beginner/chapter12-cloud-masking.html -------------------------------------------------------------------------------- /content/_build/html/03-beginner/chapter13-data-quality-bitmasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/03-beginner/chapter13-data-quality-bitmasks.html -------------------------------------------------------------------------------- /content/_build/html/03-beginner/chapter14-image-to-asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/03-beginner/chapter14-image-to-asset.html -------------------------------------------------------------------------------- /content/_build/html/03-beginner/chapter15-image-band-histograms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/03-beginner/chapter15-image-band-histograms.html -------------------------------------------------------------------------------- /content/_build/html/04-intermediate/chapter16-raster-reprojection-resampling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/04-intermediate/chapter16-raster-reprojection-resampling.html -------------------------------------------------------------------------------- /content/_build/html/04-intermediate/chapter17-raster-reduce-resolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/04-intermediate/chapter17-raster-reduce-resolution.html -------------------------------------------------------------------------------- /content/_build/html/04-intermediate/chapter18-spectral-indices-math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/04-intermediate/chapter18-spectral-indices-math.html -------------------------------------------------------------------------------- /content/_build/html/04-intermediate/chapter19-image-region-statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/04-intermediate/chapter19-image-region-statistics.html -------------------------------------------------------------------------------- /content/_build/html/04-intermediate/chapter20-image-statistics-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/04-intermediate/chapter20-image-statistics-module.html -------------------------------------------------------------------------------- /content/_build/html/04-intermediate/chapter21-data-correlation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/04-intermediate/chapter21-data-correlation.html -------------------------------------------------------------------------------- /content/_build/html/04-intermediate/chapter22-arrays-tasseled-cap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/04-intermediate/chapter22-arrays-tasseled-cap.html -------------------------------------------------------------------------------- /content/_build/html/04-intermediate/chapter23-data-conversion-export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/04-intermediate/chapter23-data-conversion-export.html -------------------------------------------------------------------------------- /content/_build/html/04-intermediate/chapter24-image-collection-export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/04-intermediate/chapter24-image-collection-export.html -------------------------------------------------------------------------------- /content/_build/html/05-advanced/chapter25-agriculture-boundaries-vaalharts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/05-advanced/chapter25-agriculture-boundaries-vaalharts.html -------------------------------------------------------------------------------- /content/_build/html/05-advanced/chapter26-rice-fields-columbia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/05-advanced/chapter26-rice-fields-columbia.html -------------------------------------------------------------------------------- /content/_build/html/05-advanced/chapter27-alpine-treeline-colorado.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/05-advanced/chapter27-alpine-treeline-colorado.html -------------------------------------------------------------------------------- /content/_build/html/06-appendices/appendix-a-acronym-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/06-appendices/appendix-a-acronym-list.html -------------------------------------------------------------------------------- /content/_build/html/06-appendices/appendix-b-bibliography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/06-appendices/appendix-b-bibliography.html -------------------------------------------------------------------------------- /content/_build/html/_images/001-earth-surface-spectra-visible-mid-infrared.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_images/001-earth-surface-spectra-visible-mid-infrared.jpg -------------------------------------------------------------------------------- /content/_build/html/_sources/01-catalog/chapter01-landsat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/01-catalog/chapter01-landsat.md -------------------------------------------------------------------------------- /content/_build/html/_sources/01-catalog/chapter02-sentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/01-catalog/chapter02-sentinel.md -------------------------------------------------------------------------------- /content/_build/html/_sources/01-catalog/chapter03-modis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/01-catalog/chapter03-modis.md -------------------------------------------------------------------------------- /content/_build/html/_sources/01-catalog/chapter04-high-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/01-catalog/chapter04-high-resolution.md -------------------------------------------------------------------------------- /content/_build/html/_sources/02-strategies/chapter05-preprocessing-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/02-strategies/chapter05-preprocessing-tasks.md -------------------------------------------------------------------------------- /content/_build/html/_sources/02-strategies/chapter06-tips-and-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/02-strategies/chapter06-tips-and-tricks.md -------------------------------------------------------------------------------- /content/_build/html/_sources/03-beginner/chapter07-qualitative-change-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/03-beginner/chapter07-qualitative-change-detection.md -------------------------------------------------------------------------------- /content/_build/html/_sources/03-beginner/chapter08-normalized-difference-vegetation-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/03-beginner/chapter08-normalized-difference-vegetation-index.md -------------------------------------------------------------------------------- /content/_build/html/_sources/03-beginner/chapter09-image-composites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/03-beginner/chapter09-image-composites.md -------------------------------------------------------------------------------- /content/_build/html/_sources/03-beginner/chapter10-image-mosaics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/03-beginner/chapter10-image-mosaics.md -------------------------------------------------------------------------------- /content/_build/html/_sources/03-beginner/chapter11-image-collection-iteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/03-beginner/chapter11-image-collection-iteration.md -------------------------------------------------------------------------------- /content/_build/html/_sources/03-beginner/chapter12-cloud-masking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/03-beginner/chapter12-cloud-masking.md -------------------------------------------------------------------------------- /content/_build/html/_sources/03-beginner/chapter13-data-quality-bitmasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/03-beginner/chapter13-data-quality-bitmasks.md -------------------------------------------------------------------------------- /content/_build/html/_sources/03-beginner/chapter14-image-to-asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/03-beginner/chapter14-image-to-asset.md -------------------------------------------------------------------------------- /content/_build/html/_sources/03-beginner/chapter15-image-band-histograms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/03-beginner/chapter15-image-band-histograms.md -------------------------------------------------------------------------------- /content/_build/html/_sources/04-intermediate/chapter16-raster-reprojection-resampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/04-intermediate/chapter16-raster-reprojection-resampling.md -------------------------------------------------------------------------------- /content/_build/html/_sources/04-intermediate/chapter17-raster-reduce-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/04-intermediate/chapter17-raster-reduce-resolution.md -------------------------------------------------------------------------------- /content/_build/html/_sources/04-intermediate/chapter18-spectral-indices-math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/04-intermediate/chapter18-spectral-indices-math.md -------------------------------------------------------------------------------- /content/_build/html/_sources/04-intermediate/chapter19-image-region-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/04-intermediate/chapter19-image-region-statistics.md -------------------------------------------------------------------------------- /content/_build/html/_sources/04-intermediate/chapter20-image-statistics-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/04-intermediate/chapter20-image-statistics-module.md -------------------------------------------------------------------------------- /content/_build/html/_sources/04-intermediate/chapter21-data-correlation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/04-intermediate/chapter21-data-correlation.md -------------------------------------------------------------------------------- /content/_build/html/_sources/04-intermediate/chapter22-arrays-tasseled-cap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/04-intermediate/chapter22-arrays-tasseled-cap.md -------------------------------------------------------------------------------- /content/_build/html/_sources/04-intermediate/chapter23-data-conversion-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/04-intermediate/chapter23-data-conversion-export.md -------------------------------------------------------------------------------- /content/_build/html/_sources/04-intermediate/chapter24-image-collection-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/04-intermediate/chapter24-image-collection-export.md -------------------------------------------------------------------------------- /content/_build/html/_sources/05-advanced/chapter25-agriculture-boundaries-vaalharts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/05-advanced/chapter25-agriculture-boundaries-vaalharts.md -------------------------------------------------------------------------------- /content/_build/html/_sources/05-advanced/chapter26-rice-fields-columbia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/05-advanced/chapter26-rice-fields-columbia.md -------------------------------------------------------------------------------- /content/_build/html/_sources/05-advanced/chapter27-alpine-treeline-colorado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/05-advanced/chapter27-alpine-treeline-colorado.md -------------------------------------------------------------------------------- /content/_build/html/_sources/06-appendices/appendix-a-acronym-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/06-appendices/appendix-a-acronym-list.md -------------------------------------------------------------------------------- /content/_build/html/_sources/06-appendices/appendix-b-bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/06-appendices/appendix-b-bibliography.md -------------------------------------------------------------------------------- /content/_build/html/_sources/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_sources/introduction.md -------------------------------------------------------------------------------- /content/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/basic.css -------------------------------------------------------------------------------- /content/_build/html/_static/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/clipboard.min.js -------------------------------------------------------------------------------- /content/_build/html/_static/copy-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/copy-button.svg -------------------------------------------------------------------------------- /content/_build/html/_static/copybutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/copybutton.css -------------------------------------------------------------------------------- /content/_build/html/_static/copybutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/copybutton.js -------------------------------------------------------------------------------- /content/_build/html/_static/copybutton_funcs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/copybutton_funcs.js -------------------------------------------------------------------------------- /content/_build/html/_static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/css/index.css -------------------------------------------------------------------------------- /content/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /content/_build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /content/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/file.png -------------------------------------------------------------------------------- /content/_build/html/_static/images/logo_binder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/images/logo_binder.svg -------------------------------------------------------------------------------- /content/_build/html/_static/images/logo_colab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/images/logo_colab.png -------------------------------------------------------------------------------- /content/_build/html/_static/images/logo_jupyterhub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/images/logo_jupyterhub.svg -------------------------------------------------------------------------------- /content/_build/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /content/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /content/_build/html/_static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/js/index.js -------------------------------------------------------------------------------- /content/_build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/language_data.js -------------------------------------------------------------------------------- /content/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/minus.png -------------------------------------------------------------------------------- /content/_build/html/_static/mystnb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/mystnb.css -------------------------------------------------------------------------------- /content/_build/html/_static/panels-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/panels-bootstrap.min.css -------------------------------------------------------------------------------- /content/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/plus.png -------------------------------------------------------------------------------- /content/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /content/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /content/_build/html/_static/sphinx-book-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/sphinx-book-theme.css -------------------------------------------------------------------------------- /content/_build/html/_static/sphinx-book-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/sphinx-book-theme.js -------------------------------------------------------------------------------- /content/_build/html/_static/sphinx-dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/sphinx-dropdown.css -------------------------------------------------------------------------------- /content/_build/html/_static/sphinx-thebe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/sphinx-thebe.css -------------------------------------------------------------------------------- /content/_build/html/_static/sphinx-thebe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/sphinx-thebe.js -------------------------------------------------------------------------------- /content/_build/html/_static/togglebutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/togglebutton.css -------------------------------------------------------------------------------- /content/_build/html/_static/togglebutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/togglebutton.js -------------------------------------------------------------------------------- /content/_build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /content/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /content/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/genindex.html -------------------------------------------------------------------------------- /content/_build/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/_build/html/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/introduction.html -------------------------------------------------------------------------------- /content/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/objects.inv -------------------------------------------------------------------------------- /content/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/search.html -------------------------------------------------------------------------------- /content/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_build/html/searchindex.js -------------------------------------------------------------------------------- /content/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_config.yml -------------------------------------------------------------------------------- /content/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/_toc.yml -------------------------------------------------------------------------------- /content/figures/001-earth-surface-spectra-visible-mid-infrared.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/figures/001-earth-surface-spectra-visible-mid-infrared.jpg -------------------------------------------------------------------------------- /content/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/introduction.md -------------------------------------------------------------------------------- /content/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/content/references.bib -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calekochenour/remote-sensing-textbook/HEAD/environment.yml --------------------------------------------------------------------------------