├── LICENSE ├── LandTrendr.js ├── README.md ├── bookdown ├── 01-introduction.Rmd ├── 02-landtrendr.Rmd ├── 03-requirements.Rmd ├── 04-running.Rmd ├── 05-outputs.Rmd ├── 06-outputs-handling.Rmd ├── 07-example-scripts.Rmd ├── 08-applications.Rmd ├── 09-api.Rmd ├── 10-validation.Rmd ├── 11-faq.Rmd ├── 12-references.Rmd ├── 13-citation.Rmd ├── 14-updates.Rmd ├── _bookdown.yml ├── add_tracking.R ├── index.Rmd ├── instructions.txt ├── style.css ├── two_year_magnitude_interpolation_definition.txt └── wide_and_narrow_table_examples.txt ├── docs ├── 404.html ├── api.html ├── citation.html ├── example-scripts.html ├── faq.html ├── imgs │ ├── Capture.PNG │ ├── all_index_ftv.png │ ├── annual_nlcd.png │ ├── archive │ │ └── pixel_story.png │ ├── delta_rgb_app.jpg │ ├── delta_rgb_interp.png │ ├── delta_rgb_interp_small.png │ ├── dist_map_app.jpg │ ├── dist_map_app.png │ ├── emapr_osu.svg │ ├── emapr_print_logo.svg │ ├── favicon.ico │ ├── figs │ │ ├── colors.PNG │ │ ├── vert1.png │ │ ├── vert2.png │ │ ├── vert3.png │ │ ├── vert4.png │ │ ├── vert5.png │ │ └── vert6.png │ ├── gee_windows.png │ ├── gee_windows.svg │ ├── gee_windows_small.png │ ├── gif_app.jpg │ ├── lt_data.csv │ ├── lt_gee_symbols.png │ ├── lt_gee_symbols_small.png │ ├── lt_outputs.png │ ├── other_index_ftv.png │ ├── outputs_series.png │ ├── pixel_story.jpg │ ├── pixel_story.png │ ├── print_results.png │ ├── seg_index_ftv.png │ ├── segment_attributes.png │ ├── segmentation.png │ ├── stack.gif │ ├── stack_orig.gif │ ├── time_series.png │ ├── time_series_app.jpg │ ├── time_series_app.png │ ├── time_series_demos.svg │ ├── timesync-legacy.jpg │ ├── timesync-legacy.png │ └── yod_mapped.png ├── index.html ├── introduction.html ├── landtrendr.html ├── libs │ ├── anchor-sections-1.0.1 │ │ ├── anchor-sections.css │ │ └── anchor-sections.js │ ├── gitbook-2.6.7 │ │ ├── css │ │ │ ├── fontawesome │ │ │ │ └── fontawesome-webfont.ttf │ │ │ ├── plugin-bookdown.css │ │ │ ├── plugin-clipboard.css │ │ │ ├── plugin-fontsettings.css │ │ │ ├── plugin-highlight.css │ │ │ ├── plugin-search.css │ │ │ ├── plugin-table.css │ │ │ └── style.css │ │ └── js │ │ │ ├── app.min.js │ │ │ ├── clipboard.min.js │ │ │ ├── jquery.highlight.js │ │ │ ├── lunr.js │ │ │ ├── plugin-bookdown.js │ │ │ ├── plugin-clipboard.js │ │ │ ├── plugin-fontsettings.js │ │ │ ├── plugin-search.js │ │ │ └── plugin-sharing.js │ ├── jquery-2.2.3 │ │ └── jquery.min.js │ └── jquery-3.6.0 │ │ └── jquery-3.6.0.min.js ├── lt-gee-outputs.html ├── lt-gee-requirements.html ├── reference-keys.txt ├── references.html ├── refs │ ├── README_orig_md.md │ ├── gorelick_etal_2017_google_earth_engine.pdf │ ├── kennedy_etal_2010_landtrendr.pdf │ ├── kennedy_etal_2012_disturbance_nwfp.pdf │ └── kennedy_etal_2018_lt-gee.pdf ├── running-lt-gee.html ├── search_index.json ├── style.css ├── ui-applications.html ├── updates.html ├── validation.html └── working-with-outputs.html └── scripts └── python ├── lt_gee_bap_test.ipynb ├── lt_gee_bap_test.py ├── lt_gee_toy_test.ipynb └── lt_gee_toy_test.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/LICENSE -------------------------------------------------------------------------------- /LandTrendr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/LandTrendr.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/README.md -------------------------------------------------------------------------------- /bookdown/01-introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/01-introduction.Rmd -------------------------------------------------------------------------------- /bookdown/02-landtrendr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/02-landtrendr.Rmd -------------------------------------------------------------------------------- /bookdown/03-requirements.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/03-requirements.Rmd -------------------------------------------------------------------------------- /bookdown/04-running.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/04-running.Rmd -------------------------------------------------------------------------------- /bookdown/05-outputs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/05-outputs.Rmd -------------------------------------------------------------------------------- /bookdown/06-outputs-handling.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/06-outputs-handling.Rmd -------------------------------------------------------------------------------- /bookdown/07-example-scripts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/07-example-scripts.Rmd -------------------------------------------------------------------------------- /bookdown/08-applications.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/08-applications.Rmd -------------------------------------------------------------------------------- /bookdown/09-api.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/09-api.Rmd -------------------------------------------------------------------------------- /bookdown/10-validation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/10-validation.Rmd -------------------------------------------------------------------------------- /bookdown/11-faq.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/11-faq.Rmd -------------------------------------------------------------------------------- /bookdown/12-references.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/12-references.Rmd -------------------------------------------------------------------------------- /bookdown/13-citation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/13-citation.Rmd -------------------------------------------------------------------------------- /bookdown/14-updates.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/14-updates.Rmd -------------------------------------------------------------------------------- /bookdown/_bookdown.yml: -------------------------------------------------------------------------------- 1 | output_dir: "../docs" 2 | -------------------------------------------------------------------------------- /bookdown/add_tracking.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/add_tracking.R -------------------------------------------------------------------------------- /bookdown/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/index.Rmd -------------------------------------------------------------------------------- /bookdown/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/instructions.txt -------------------------------------------------------------------------------- /bookdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/style.css -------------------------------------------------------------------------------- /bookdown/two_year_magnitude_interpolation_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/two_year_magnitude_interpolation_definition.txt -------------------------------------------------------------------------------- /bookdown/wide_and_narrow_table_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/bookdown/wide_and_narrow_table_examples.txt -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/api.html -------------------------------------------------------------------------------- /docs/citation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/citation.html -------------------------------------------------------------------------------- /docs/example-scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/example-scripts.html -------------------------------------------------------------------------------- /docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/faq.html -------------------------------------------------------------------------------- /docs/imgs/Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/Capture.PNG -------------------------------------------------------------------------------- /docs/imgs/all_index_ftv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/all_index_ftv.png -------------------------------------------------------------------------------- /docs/imgs/annual_nlcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/annual_nlcd.png -------------------------------------------------------------------------------- /docs/imgs/archive/pixel_story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/archive/pixel_story.png -------------------------------------------------------------------------------- /docs/imgs/delta_rgb_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/delta_rgb_app.jpg -------------------------------------------------------------------------------- /docs/imgs/delta_rgb_interp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/delta_rgb_interp.png -------------------------------------------------------------------------------- /docs/imgs/delta_rgb_interp_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/delta_rgb_interp_small.png -------------------------------------------------------------------------------- /docs/imgs/dist_map_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/dist_map_app.jpg -------------------------------------------------------------------------------- /docs/imgs/dist_map_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/dist_map_app.png -------------------------------------------------------------------------------- /docs/imgs/emapr_osu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/emapr_osu.svg -------------------------------------------------------------------------------- /docs/imgs/emapr_print_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/emapr_print_logo.svg -------------------------------------------------------------------------------- /docs/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/favicon.ico -------------------------------------------------------------------------------- /docs/imgs/figs/colors.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/figs/colors.PNG -------------------------------------------------------------------------------- /docs/imgs/figs/vert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/figs/vert1.png -------------------------------------------------------------------------------- /docs/imgs/figs/vert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/figs/vert2.png -------------------------------------------------------------------------------- /docs/imgs/figs/vert3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/figs/vert3.png -------------------------------------------------------------------------------- /docs/imgs/figs/vert4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/figs/vert4.png -------------------------------------------------------------------------------- /docs/imgs/figs/vert5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/figs/vert5.png -------------------------------------------------------------------------------- /docs/imgs/figs/vert6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/figs/vert6.png -------------------------------------------------------------------------------- /docs/imgs/gee_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/gee_windows.png -------------------------------------------------------------------------------- /docs/imgs/gee_windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/gee_windows.svg -------------------------------------------------------------------------------- /docs/imgs/gee_windows_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/gee_windows_small.png -------------------------------------------------------------------------------- /docs/imgs/gif_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/gif_app.jpg -------------------------------------------------------------------------------- /docs/imgs/lt_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/lt_data.csv -------------------------------------------------------------------------------- /docs/imgs/lt_gee_symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/lt_gee_symbols.png -------------------------------------------------------------------------------- /docs/imgs/lt_gee_symbols_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/lt_gee_symbols_small.png -------------------------------------------------------------------------------- /docs/imgs/lt_outputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/lt_outputs.png -------------------------------------------------------------------------------- /docs/imgs/other_index_ftv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/other_index_ftv.png -------------------------------------------------------------------------------- /docs/imgs/outputs_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/outputs_series.png -------------------------------------------------------------------------------- /docs/imgs/pixel_story.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/pixel_story.jpg -------------------------------------------------------------------------------- /docs/imgs/pixel_story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/pixel_story.png -------------------------------------------------------------------------------- /docs/imgs/print_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/print_results.png -------------------------------------------------------------------------------- /docs/imgs/seg_index_ftv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/seg_index_ftv.png -------------------------------------------------------------------------------- /docs/imgs/segment_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/segment_attributes.png -------------------------------------------------------------------------------- /docs/imgs/segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/segmentation.png -------------------------------------------------------------------------------- /docs/imgs/stack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/stack.gif -------------------------------------------------------------------------------- /docs/imgs/stack_orig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/stack_orig.gif -------------------------------------------------------------------------------- /docs/imgs/time_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/time_series.png -------------------------------------------------------------------------------- /docs/imgs/time_series_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/time_series_app.jpg -------------------------------------------------------------------------------- /docs/imgs/time_series_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/time_series_app.png -------------------------------------------------------------------------------- /docs/imgs/time_series_demos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/time_series_demos.svg -------------------------------------------------------------------------------- /docs/imgs/timesync-legacy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/timesync-legacy.jpg -------------------------------------------------------------------------------- /docs/imgs/timesync-legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/timesync-legacy.png -------------------------------------------------------------------------------- /docs/imgs/yod_mapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/imgs/yod_mapped.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/introduction.html -------------------------------------------------------------------------------- /docs/landtrendr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/landtrendr.html -------------------------------------------------------------------------------- /docs/libs/anchor-sections-1.0.1/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/anchor-sections-1.0.1/anchor-sections.css -------------------------------------------------------------------------------- /docs/libs/anchor-sections-1.0.1/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/anchor-sections-1.0.1/anchor-sections.js -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/css/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/css/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/css/plugin-bookdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/css/plugin-bookdown.css -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/css/plugin-clipboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/css/plugin-clipboard.css -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/css/plugin-fontsettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/css/plugin-fontsettings.css -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/css/plugin-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/css/plugin-highlight.css -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/css/plugin-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/css/plugin-search.css -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/css/plugin-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/css/plugin-table.css -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/css/style.css -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/js/app.min.js -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/js/clipboard.min.js -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/js/jquery.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/js/jquery.highlight.js -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/js/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/js/lunr.js -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/js/plugin-bookdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/js/plugin-bookdown.js -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/js/plugin-clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/js/plugin-clipboard.js -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/js/plugin-fontsettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/js/plugin-fontsettings.js -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/js/plugin-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/js/plugin-search.js -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/js/plugin-sharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/gitbook-2.6.7/js/plugin-sharing.js -------------------------------------------------------------------------------- /docs/libs/jquery-2.2.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/jquery-2.2.3/jquery.min.js -------------------------------------------------------------------------------- /docs/libs/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/libs/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/lt-gee-outputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/lt-gee-outputs.html -------------------------------------------------------------------------------- /docs/lt-gee-requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/lt-gee-requirements.html -------------------------------------------------------------------------------- /docs/reference-keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/reference-keys.txt -------------------------------------------------------------------------------- /docs/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/references.html -------------------------------------------------------------------------------- /docs/refs/README_orig_md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/refs/README_orig_md.md -------------------------------------------------------------------------------- /docs/refs/gorelick_etal_2017_google_earth_engine.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/refs/gorelick_etal_2017_google_earth_engine.pdf -------------------------------------------------------------------------------- /docs/refs/kennedy_etal_2010_landtrendr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/refs/kennedy_etal_2010_landtrendr.pdf -------------------------------------------------------------------------------- /docs/refs/kennedy_etal_2012_disturbance_nwfp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/refs/kennedy_etal_2012_disturbance_nwfp.pdf -------------------------------------------------------------------------------- /docs/refs/kennedy_etal_2018_lt-gee.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/refs/kennedy_etal_2018_lt-gee.pdf -------------------------------------------------------------------------------- /docs/running-lt-gee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/running-lt-gee.html -------------------------------------------------------------------------------- /docs/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/search_index.json -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs/ui-applications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/ui-applications.html -------------------------------------------------------------------------------- /docs/updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/updates.html -------------------------------------------------------------------------------- /docs/validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/validation.html -------------------------------------------------------------------------------- /docs/working-with-outputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/docs/working-with-outputs.html -------------------------------------------------------------------------------- /scripts/python/lt_gee_bap_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/scripts/python/lt_gee_bap_test.ipynb -------------------------------------------------------------------------------- /scripts/python/lt_gee_bap_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/scripts/python/lt_gee_bap_test.py -------------------------------------------------------------------------------- /scripts/python/lt_gee_toy_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/scripts/python/lt_gee_toy_test.ipynb -------------------------------------------------------------------------------- /scripts/python/lt_gee_toy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMapR/LT-GEE/HEAD/scripts/python/lt_gee_toy_test.py --------------------------------------------------------------------------------