├── .Rbuildignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── help-needed---question.md │ └── missing---unclear-documentation.md └── workflows │ └── close-issue.yml ├── .gitignore ├── .project ├── .travis.yml ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── .directory ├── .gitignore ├── MODIStsp-package.R ├── MODIStsp.R ├── MODIStsp_GUI.R ├── MODIStsp_addindex.R ├── MODIStsp_download.R ├── MODIStsp_extract.R ├── MODIStsp_get_prodlayers.R ├── MODIStsp_install_launcher.R ├── MODIStsp_process.R ├── MODIStsp_process_QA_bits.R ├── MODIStsp_process_bands.R ├── MODIStsp_process_indexes.R ├── MODIStsp_read_xml.R ├── MODIStsp_resetindexes.R ├── MODIStsp_vrt_create.R ├── bbox_from_file.R ├── check_files_existance.R ├── check_formula_errors.R ├── check_proc_opts.R ├── check_projection.R ├── get_mod_dates.R ├── get_mod_dirs.R ├── get_mod_filenames.R ├── get_reqbands.R ├── get_yeardates.R ├── load_prodopts.R ├── process_message.R ├── reproj_bbox.R ├── set_bandind_matrix.R ├── shinygui_saveopts.R ├── split_nodata_values.R └── tiles_from_bbox.R ├── README.Rmd ├── README.md ├── _config.yml ├── _pkgdown.yml ├── appveyor.yml ├── codecov.yml ├── cran-comments.md ├── docs ├── 404.html ├── CONDUCT.html ├── ISSUE_TEMPLATE.html ├── LICENSE.html ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── articles │ ├── GUI_1.PNG │ ├── GUI_2_tiles.PNG │ ├── GUI_3.PNG │ ├── GUI_bar.PNG │ ├── GUI_newind.PNG │ ├── MAIN_GUI.png │ ├── MODIStsp.html │ ├── MODIStsp_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── figure-html │ │ │ ├── GUIfig-1.png │ │ │ ├── indexfig-1.png │ │ │ ├── proc_layers-1.png │ │ │ ├── unnamed-chunk-11-1.png │ │ │ └── unnamed-chunk-11-2.png │ │ ├── header-attrs-2.3 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── NEWIND_GUI.png │ ├── Products_list.html │ ├── Products_list_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ └── anchor-sections.js │ │ ├── crosstalk-1.1.0.1 │ │ │ └── js │ │ │ │ ├── crosstalk.js.map │ │ │ │ └── crosstalk.min.js.map │ │ ├── datatables-binding-0.15 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.16 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.28 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.30 │ │ │ └── datatables.js │ │ ├── datatables-css-0.0.0 │ │ │ └── datatables-crosstalk.css │ │ ├── dt-core-bootstrap-1.10.20 │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap.extra.css │ │ │ └── js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── dt-core-bootstrap-1.13.4 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.extra.css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── header-attrs-2.3 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.2 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.2 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.12.4 │ │ │ └── LICENSE.txt │ │ ├── nouislider-7.0.10 │ │ │ └── jquery.nouislider.min.css │ │ └── selectize-0.12.0 │ │ │ └── selectize.min.js │ ├── SELECT_GUI.png │ ├── analyze.html │ ├── analyze_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── figure-html │ │ │ ├── unnamed-chunk-2-1.png │ │ │ ├── unnamed-chunk-4-1.png │ │ │ ├── unnamed-chunk-4-2.png │ │ │ ├── unnamed-chunk-7-1.png │ │ │ ├── unnamed-chunk-8-1.png │ │ │ └── unnamed-chunk-9-1.png │ │ ├── header-attrs-2.3 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── discovered_bug.html │ ├── discovered_bug_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.3 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── faq.html │ ├── faq_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.3 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── index.html │ ├── installation.html │ ├── installation_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.3 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── interactive_execution.html │ ├── interactive_execution_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── crosstalk-1.1.0.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── crosstalk-1.1.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── crosstalk-1.2.0 │ │ │ ├── css │ │ │ │ └── crosstalk.min.css │ │ │ ├── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ │ └── scss │ │ │ │ └── crosstalk.scss │ │ ├── datatables-binding-0.15 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.16 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.18 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.20 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.21 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.24 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.27 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.28 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.30 │ │ │ └── datatables.js │ │ ├── datatables-css-0.0.0 │ │ │ └── datatables-crosstalk.css │ │ ├── dt-core-bootstrap-1.10.20 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.extra.css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── dt-core-bootstrap-1.11.3 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.extra.css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── dt-core-bootstrap-1.12.1 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.extra.css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── dt-core-bootstrap-1.13.4 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.extra.css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── figure-html │ │ │ ├── GUIfig-1.png │ │ │ ├── indexfig-1.png │ │ │ ├── proc_layers-1.png │ │ │ ├── unnamed-chunk-2-1.png │ │ │ ├── unnamed-chunk-3-1.png │ │ │ └── unnamed-chunk-4-1.png │ │ ├── header-attrs-2.3 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.9 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.2 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.2 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.12.4 │ │ │ ├── LICENSE.txt │ │ │ └── jquery.min.js │ │ ├── jquery-3.5.1 │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── jquery-3.6.0 │ │ │ ├── jquery-3.6.0.js │ │ │ ├── jquery-3.6.0.min.js │ │ │ └── jquery-3.6.0.min.map │ ├── lorenzo.html │ ├── lorenzo_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── noninteractive_execution.html │ ├── noninteractive_execution_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── figure-html │ │ │ ├── unnamed-chunk-5-1.png │ │ │ └── unnamed-chunk-5-2.png │ │ ├── header-attrs-2.3 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── output.html │ ├── output_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── header-attrs-2.3 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ │ └── header-attrs.js │ ├── products_list_files │ │ ├── anchor-sections-1.0 │ │ │ └── anchor-sections.css │ │ ├── crosstalk-1.1.0.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ └── crosstalk.min.js │ │ ├── crosstalk-1.1.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── crosstalk-1.2.0 │ │ │ ├── css │ │ │ │ └── crosstalk.min.css │ │ │ ├── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ │ └── scss │ │ │ │ └── crosstalk.scss │ │ ├── datatables-binding-0.18 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.20 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.21 │ │ │ └── datatables.js │ │ ├── datatables-binding-0.24 │ │ │ └── datatables.js │ │ ├── dt-core-bootstrap-1.10.20 │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ └── js │ │ │ │ └── dataTables.bootstrap.min.js │ │ ├── dt-core-bootstrap-1.11.3 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.extra.css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── header-attrs-2.9 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.12.4 │ │ │ └── jquery.min.js │ │ ├── jquery-3.5.1 │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── jquery-3.6.0 │ │ │ ├── jquery-3.6.0.js │ │ │ ├── jquery-3.6.0.min.js │ │ │ └── jquery-3.6.0.min.map │ │ ├── nouislider-7.0.10 │ │ │ └── jquery.nouislider.min.js │ │ └── selectize-0.12.0 │ │ │ └── selectize.bootstrap3.css │ ├── standalone_execution.html │ └── standalone_execution_files │ │ ├── accessible-code-block-0.0.1 │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ ├── anchor-sections.css │ │ └── anchor-sections.js │ │ ├── header-attrs-2.3 │ │ └── header-attrs.js │ │ └── header-attrs-2.9 │ │ └── header-attrs.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── deps │ ├── bootstrap-5.1.0 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ └── bootstrap.min.css │ ├── bootstrap-5.1.3 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ └── bootstrap.min.css │ ├── bootstrap-5.2.2 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ └── bootstrap.min.css │ ├── data-deps.txt │ └── jquery-3.6.0 │ │ ├── jquery-3.6.0.js │ │ ├── jquery-3.6.0.min.js │ │ └── jquery-3.6.0.min.map ├── docsearch.css ├── docsearch.js ├── extra.css ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── hexlogo.png ├── icon_lettering_color.svg ├── index.html ├── labs.png ├── link.svg ├── logo.png ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── MODIStsp-1.png │ ├── MODIStsp-2.png │ ├── MODIStsp-package.html │ ├── MODIStsp.html │ ├── MODIStsp_GUI.html │ ├── MODIStsp_addindex.html │ ├── MODIStsp_download.html │ ├── MODIStsp_extract.html │ ├── MODIStsp_get_prodlayers.html │ ├── MODIStsp_get_prodnames.html │ ├── MODIStsp_process.html │ ├── MODIStsp_process_QA_bits.html │ ├── MODIStsp_process_bands.html │ ├── MODIStsp_process_indexes.html │ ├── MODIStsp_read_xml.html │ ├── MODIStsp_resetindexes.html │ ├── MODIStsp_vrt_create.html │ ├── Rplot001.png │ ├── Rplot002.png │ ├── bbox_from_file.html │ ├── check_files_existence.html │ ├── check_proc_opts.html │ ├── check_projection.html │ ├── figures │ │ ├── irea_logo.png │ │ ├── logo.png │ │ └── logo_irea.png │ ├── get_mod_dates.html │ ├── get_mod_dirs.html │ ├── get_mod_filenames.html │ ├── get_reqbands.html │ ├── get_yeardates.html │ ├── index.html │ ├── install_MODIStsp_launcher.html │ ├── load_prodopts.html │ ├── process_message.html │ ├── reproj_bbox.html │ ├── set_bandind_matrix.html │ └── split_nodata_values.html ├── ropensci.css ├── search.json └── sitemap.xml ├── index.Rmd ├── index.md ├── inst ├── CITATION ├── ExtData │ ├── MODIS_Tiles.RData │ ├── MODIS_Tiles_latlon.RData │ ├── MODIStsp_ProdOpts.RData │ ├── MODIStsp_ProdOpts.xml.zip │ ├── MODIStsp_indexes.json │ └── mstp_defaults.json ├── Log │ └── MODIStsp_170731_110041.Rout ├── WORDLIST ├── app │ ├── MSTP_app.R │ ├── global.R │ ├── srv │ │ ├── mstp_helpmess_srv.R │ │ ├── mstp_load_srv.R │ │ ├── mstp_opts_srv.R │ │ ├── mstp_prds_srv.R │ │ ├── mstp_save_srv.R │ │ ├── mstp_spatemp_srv_bbox.R │ │ ├── mstp_spatemp_srv_draw.R │ │ ├── mstp_spatemp_srv_file.R │ │ ├── mstp_spatemp_srv_proj.R │ │ └── mstp_spatemp_srv_tiles.R │ ├── ui │ │ ├── mstp_other_ui.R │ │ ├── mstp_prds_ui.R │ │ └── mstp_spatemp_ui.R │ └── www │ │ ├── irea_logo.png │ │ └── logo.png └── testdata │ ├── MOD09A1.A2017193.h18v04.006.2017202035302.hdf.zip │ ├── MOD11B2.A2017001.h14v04.006.2017013155631.hdf.zip │ ├── MODIStsp_2017-12-17.json │ ├── VI_16Days_500m_v6 │ └── NDVI.zip │ ├── extract_polys.cpg │ ├── extract_polys.dbf │ ├── extract_polys.prj │ ├── extract_polys.qpj │ ├── extract_polys.shp │ ├── extract_polys.shx │ ├── lakeshapes │ ├── garda_lake.dbf │ ├── garda_lake.prj │ ├── garda_lake.shp │ ├── garda_lake.shx │ ├── iseo_lake.dbf │ ├── iseo_lake.prj │ ├── iseo_lake.shp │ └── iseo_lake.shx │ ├── spatial_file.cpg │ ├── spatial_file.dbf │ ├── spatial_file.prj │ ├── spatial_file.shp │ ├── spatial_file.shx │ ├── test01.json │ ├── test01a.json │ ├── test02.json │ ├── test03.json │ ├── test03a.json │ ├── test04.json │ ├── test04a.json │ ├── test04b.json │ ├── test04c.json │ ├── test05.json │ ├── test05a.json │ ├── test06.json │ ├── test06a.json │ ├── test06b.json │ ├── test07.json │ ├── test07b.json │ ├── test_MOD10A2.json │ ├── test_MOD13A2.json │ ├── test_addindex.json │ ├── test_extract.json │ ├── test_mask.json │ ├── testtemp_win.json │ └── wrong_json.json ├── man ├── MODIStsp-package.Rd ├── MODIStsp.Rd ├── MODIStsp_GUI.Rd ├── MODIStsp_addindex.Rd ├── MODIStsp_download.Rd ├── MODIStsp_extract.Rd ├── MODIStsp_get_prodlayers.Rd ├── MODIStsp_get_prodnames.Rd ├── MODIStsp_process.Rd ├── MODIStsp_process_QA_bits.Rd ├── MODIStsp_process_bands.Rd ├── MODIStsp_process_indexes.Rd ├── MODIStsp_read_xml.Rd ├── MODIStsp_resetindexes.Rd ├── MODIStsp_vrt_create.Rd ├── bbox_from_file.Rd ├── check_files_existence.Rd ├── check_proc_opts.Rd ├── check_projection.Rd ├── figures │ ├── irea_logo.png │ └── logo.png ├── get_mod_dates.Rd ├── get_mod_dirs.Rd ├── get_mod_filenames.Rd ├── get_reqbands.Rd ├── get_yeardates.Rd ├── install_MODIStsp_launcher.Rd ├── load_prodopts.Rd ├── process_message.Rd ├── reproj_bbox.Rd ├── set_bandind_matrix.Rd └── split_nodata_values.Rd ├── pkgdown ├── extra.css └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── spelling.R ├── spelling.Rout.save ├── testthat.R └── testthat │ ├── test-split_nodata_values.R │ ├── test_MODIStsp_00.R │ ├── test_MODIStsp_01.R │ ├── test_MODIStsp_02.R │ ├── test_MODIStsp_03.R │ ├── test_MODIStsp_04.R │ ├── test_MODIStsp_05.R │ ├── test_MODIStsp_06.R │ ├── test_MODIStsp_07.R │ ├── test_MODIStsp_08.R │ ├── test_MODIStsp_addindex.R │ ├── test_MODIStsp_extract.R │ ├── test_MODIStsp_readxml.R │ ├── test_MODIStsp_resetindexes.R │ ├── test_bbox_from_file.R │ ├── test_check_proj4string.R │ └── test_get_yeardates.R ├── utils ├── WIP │ ├── MODIStest_check_md5.R │ ├── MODIStsp_change_options.R │ └── check_usearia.R └── logoxcf.xcf └── vignettes ├── GUI_1.PNG ├── GUI_2_bbox.PNG ├── GUI_2_file.PNG ├── GUI_2_tiles.PNG ├── GUI_3.PNG ├── GUI_bar.PNG ├── GUI_newind.PNG ├── MODIStsp.Rmd ├── MODIStsp.bib ├── analyze.Rmd ├── discovered_bug.Rmd ├── faq.Rmd ├── installation.Rmd ├── interactive_execution.Rmd ├── logo.png ├── lorenzo.Rmd ├── noninteractive_execution.Rmd ├── output.Rmd ├── products_list.Rmd └── standalone_execution.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help-needed---question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/.github/ISSUE_TEMPLATE/help-needed---question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/missing---unclear-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/.github/ISSUE_TEMPLATE/missing---unclear-documentation.md -------------------------------------------------------------------------------- /.github/workflows/close-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/.github/workflows/close-issue.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/.project -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2015,3,11,14,9,51 3 | Version=3 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /R/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/.gitignore -------------------------------------------------------------------------------- /R/MODIStsp-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp-package.R -------------------------------------------------------------------------------- /R/MODIStsp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp.R -------------------------------------------------------------------------------- /R/MODIStsp_GUI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_GUI.R -------------------------------------------------------------------------------- /R/MODIStsp_addindex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_addindex.R -------------------------------------------------------------------------------- /R/MODIStsp_download.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_download.R -------------------------------------------------------------------------------- /R/MODIStsp_extract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_extract.R -------------------------------------------------------------------------------- /R/MODIStsp_get_prodlayers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_get_prodlayers.R -------------------------------------------------------------------------------- /R/MODIStsp_install_launcher.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_install_launcher.R -------------------------------------------------------------------------------- /R/MODIStsp_process.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_process.R -------------------------------------------------------------------------------- /R/MODIStsp_process_QA_bits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_process_QA_bits.R -------------------------------------------------------------------------------- /R/MODIStsp_process_bands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_process_bands.R -------------------------------------------------------------------------------- /R/MODIStsp_process_indexes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_process_indexes.R -------------------------------------------------------------------------------- /R/MODIStsp_read_xml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_read_xml.R -------------------------------------------------------------------------------- /R/MODIStsp_resetindexes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_resetindexes.R -------------------------------------------------------------------------------- /R/MODIStsp_vrt_create.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/MODIStsp_vrt_create.R -------------------------------------------------------------------------------- /R/bbox_from_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/bbox_from_file.R -------------------------------------------------------------------------------- /R/check_files_existance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/check_files_existance.R -------------------------------------------------------------------------------- /R/check_formula_errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/check_formula_errors.R -------------------------------------------------------------------------------- /R/check_proc_opts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/check_proc_opts.R -------------------------------------------------------------------------------- /R/check_projection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/check_projection.R -------------------------------------------------------------------------------- /R/get_mod_dates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/get_mod_dates.R -------------------------------------------------------------------------------- /R/get_mod_dirs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/get_mod_dirs.R -------------------------------------------------------------------------------- /R/get_mod_filenames.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/get_mod_filenames.R -------------------------------------------------------------------------------- /R/get_reqbands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/get_reqbands.R -------------------------------------------------------------------------------- /R/get_yeardates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/get_yeardates.R -------------------------------------------------------------------------------- /R/load_prodopts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/load_prodopts.R -------------------------------------------------------------------------------- /R/process_message.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/process_message.R -------------------------------------------------------------------------------- /R/reproj_bbox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/reproj_bbox.R -------------------------------------------------------------------------------- /R/set_bandind_matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/set_bandind_matrix.R -------------------------------------------------------------------------------- /R/shinygui_saveopts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/shinygui_saveopts.R -------------------------------------------------------------------------------- /R/split_nodata_values.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/split_nodata_values.R -------------------------------------------------------------------------------- /R/tiles_from_bbox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/R/tiles_from_bbox.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/_config.yml -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/CONDUCT.html -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/ISSUE_TEMPLATE.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/GUI_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/GUI_1.PNG -------------------------------------------------------------------------------- /docs/articles/GUI_2_tiles.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/GUI_2_tiles.PNG -------------------------------------------------------------------------------- /docs/articles/GUI_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/GUI_3.PNG -------------------------------------------------------------------------------- /docs/articles/GUI_bar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/GUI_bar.PNG -------------------------------------------------------------------------------- /docs/articles/GUI_newind.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/GUI_newind.PNG -------------------------------------------------------------------------------- /docs/articles/MAIN_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MAIN_GUI.png -------------------------------------------------------------------------------- /docs/articles/MODIStsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp.html -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/figure-html/GUIfig-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/figure-html/GUIfig-1.png -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/figure-html/indexfig-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/figure-html/indexfig-1.png -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/figure-html/proc_layers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/figure-html/proc_layers-1.png -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/figure-html/unnamed-chunk-11-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/figure-html/unnamed-chunk-11-2.png -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/MODIStsp_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/MODIStsp_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/NEWIND_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/NEWIND_GUI.png -------------------------------------------------------------------------------- /docs/articles/Products_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list.html -------------------------------------------------------------------------------- /docs/articles/Products_list_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/crosstalk-1.1.0.1/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/crosstalk-1.1.0.1/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/Products_list_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/Products_list_files/datatables-binding-0.15/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/datatables-binding-0.15/datatables.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/datatables-binding-0.16/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/datatables-binding-0.16/datatables.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/datatables-binding-0.28/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/datatables-binding-0.28/datatables.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/datatables-binding-0.30/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/datatables-binding-0.30/datatables.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/datatables-css-0.0.0/datatables-crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/datatables-css-0.0.0/datatables-crosstalk.css -------------------------------------------------------------------------------- /docs/articles/Products_list_files/dt-core-bootstrap-1.10.20/css/dataTables.bootstrap.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/dt-core-bootstrap-1.10.20/css/dataTables.bootstrap.extra.css -------------------------------------------------------------------------------- /docs/articles/Products_list_files/dt-core-bootstrap-1.10.20/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/dt-core-bootstrap-1.10.20/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/dt-core-bootstrap-1.13.4/css/dataTables.bootstrap.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/dt-core-bootstrap-1.13.4/css/dataTables.bootstrap.extra.css -------------------------------------------------------------------------------- /docs/articles/Products_list_files/dt-core-bootstrap-1.13.4/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/dt-core-bootstrap-1.13.4/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /docs/articles/Products_list_files/dt-core-bootstrap-1.13.4/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/dt-core-bootstrap-1.13.4/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/dt-core-bootstrap-1.13.4/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/dt-core-bootstrap-1.13.4/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/htmlwidgets-1.5.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/htmlwidgets-1.5.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/htmlwidgets-1.6.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/htmlwidgets-1.6.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/Products_list_files/jquery-1.12.4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/jquery-1.12.4/LICENSE.txt -------------------------------------------------------------------------------- /docs/articles/Products_list_files/nouislider-7.0.10/jquery.nouislider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/nouislider-7.0.10/jquery.nouislider.min.css -------------------------------------------------------------------------------- /docs/articles/Products_list_files/selectize-0.12.0/selectize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/Products_list_files/selectize-0.12.0/selectize.min.js -------------------------------------------------------------------------------- /docs/articles/SELECT_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/SELECT_GUI.png -------------------------------------------------------------------------------- /docs/articles/analyze.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze.html -------------------------------------------------------------------------------- /docs/articles/analyze_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/analyze_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/analyze_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/analyze_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/analyze_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/articles/analyze_files/figure-html/unnamed-chunk-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/figure-html/unnamed-chunk-4-2.png -------------------------------------------------------------------------------- /docs/articles/analyze_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/analyze_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/analyze_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/articles/analyze_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/analyze_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/analyze_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/discovered_bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/discovered_bug.html -------------------------------------------------------------------------------- /docs/articles/discovered_bug_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/discovered_bug_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/discovered_bug_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/discovered_bug_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/discovered_bug_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/discovered_bug_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/discovered_bug_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/discovered_bug_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/discovered_bug_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/discovered_bug_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/faq.html -------------------------------------------------------------------------------- /docs/articles/faq_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/faq_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/faq_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/faq_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/faq_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/faq_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/faq_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/faq_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/faq_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/faq_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/installation.html -------------------------------------------------------------------------------- /docs/articles/installation_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/installation_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/installation_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/installation_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/installation_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/installation_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/installation_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/installation_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/installation_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/installation_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution.html -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.0.1/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.0.1/css/crosstalk.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.0.1/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.0.1/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.0.1/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.0.1/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.0.1/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.0.1/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.1/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.1/css/crosstalk.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.1/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.1/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.1/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.1/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.1/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.1/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.1.1/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.1.1/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.2.0/css/crosstalk.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.2.0/css/crosstalk.min.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.2.0/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.2.0/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.2.0/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.2.0/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.2.0/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.2.0/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.2.0/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.2.0/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/crosstalk-1.2.0/scss/crosstalk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/crosstalk-1.2.0/scss/crosstalk.scss -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-binding-0.15/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-binding-0.15/datatables.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-binding-0.16/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-binding-0.16/datatables.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-binding-0.18/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-binding-0.18/datatables.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-binding-0.20/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-binding-0.20/datatables.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-binding-0.21/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-binding-0.21/datatables.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-binding-0.24/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-binding-0.24/datatables.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-binding-0.27/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-binding-0.27/datatables.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-binding-0.28/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-binding-0.28/datatables.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-binding-0.30/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-binding-0.30/datatables.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/datatables-css-0.0.0/datatables-crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/datatables-css-0.0.0/datatables-crosstalk.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.10.20/css/dataTables.bootstrap.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.10.20/css/dataTables.bootstrap.extra.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.10.20/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.10.20/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.10.20/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.10.20/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.10.20/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.10.20/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.11.3/css/dataTables.bootstrap.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.11.3/css/dataTables.bootstrap.extra.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.11.3/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.11.3/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.11.3/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.11.3/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.11.3/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.11.3/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.12.1/css/dataTables.bootstrap.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.12.1/css/dataTables.bootstrap.extra.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.12.1/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.12.1/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.12.1/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.12.1/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.12.1/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.12.1/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.13.4/css/dataTables.bootstrap.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.13.4/css/dataTables.bootstrap.extra.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.13.4/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.13.4/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.13.4/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.13.4/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/dt-core-bootstrap-1.13.4/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/dt-core-bootstrap-1.13.4/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/figure-html/GUIfig-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/figure-html/GUIfig-1.png -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/figure-html/indexfig-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/figure-html/indexfig-1.png -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/figure-html/proc_layers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/figure-html/proc_layers-1.png -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/htmlwidgets-1.5.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/htmlwidgets-1.5.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/htmlwidgets-1.5.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/htmlwidgets-1.5.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/htmlwidgets-1.6.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/htmlwidgets-1.6.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/htmlwidgets-1.6.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/htmlwidgets-1.6.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/jquery-1.12.4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/jquery-1.12.4/LICENSE.txt -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/jquery-3.5.1/jquery-AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/jquery-3.5.1/jquery-AUTHORS.txt -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/jquery-3.5.1/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/jquery-3.5.1/jquery.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/jquery-3.5.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/jquery-3.5.1/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/jquery-3.5.1/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/jquery-3.5.1/jquery.min.map -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/articles/interactive_execution_files/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/interactive_execution_files/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /docs/articles/lorenzo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/lorenzo.html -------------------------------------------------------------------------------- /docs/articles/lorenzo_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/lorenzo_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/lorenzo_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/lorenzo_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/lorenzo_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/lorenzo_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/noninteractive_execution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/noninteractive_execution.html -------------------------------------------------------------------------------- /docs/articles/noninteractive_execution_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/noninteractive_execution_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/noninteractive_execution_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/noninteractive_execution_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/noninteractive_execution_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/noninteractive_execution_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/noninteractive_execution_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/noninteractive_execution_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/noninteractive_execution_files/figure-html/unnamed-chunk-5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/noninteractive_execution_files/figure-html/unnamed-chunk-5-2.png -------------------------------------------------------------------------------- /docs/articles/noninteractive_execution_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/noninteractive_execution_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/noninteractive_execution_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/noninteractive_execution_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/output.html -------------------------------------------------------------------------------- /docs/articles/output_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/output_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/output_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/output_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/output_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/output_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/output_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/output_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/output_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/output_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.1.0.1/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.1.0.1/css/crosstalk.css -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.1.0.1/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.1.0.1/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.1.0.1/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.1.0.1/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.1.1/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.1.1/css/crosstalk.css -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.1.1/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.1.1/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.1.1/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.1.1/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.1.1/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.1.1/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.1.1/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.1.1/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.2.0/css/crosstalk.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.2.0/css/crosstalk.min.css -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.2.0/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.2.0/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.2.0/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.2.0/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.2.0/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.2.0/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.2.0/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.2.0/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/products_list_files/crosstalk-1.2.0/scss/crosstalk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/crosstalk-1.2.0/scss/crosstalk.scss -------------------------------------------------------------------------------- /docs/articles/products_list_files/datatables-binding-0.18/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/datatables-binding-0.18/datatables.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/datatables-binding-0.20/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/datatables-binding-0.20/datatables.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/datatables-binding-0.21/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/datatables-binding-0.21/datatables.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/datatables-binding-0.24/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/datatables-binding-0.24/datatables.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/dt-core-bootstrap-1.10.20/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/dt-core-bootstrap-1.10.20/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /docs/articles/products_list_files/dt-core-bootstrap-1.10.20/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/dt-core-bootstrap-1.10.20/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/dt-core-bootstrap-1.11.3/css/dataTables.bootstrap.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/dt-core-bootstrap-1.11.3/css/dataTables.bootstrap.extra.css -------------------------------------------------------------------------------- /docs/articles/products_list_files/dt-core-bootstrap-1.11.3/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/dt-core-bootstrap-1.11.3/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /docs/articles/products_list_files/dt-core-bootstrap-1.11.3/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/dt-core-bootstrap-1.11.3/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/dt-core-bootstrap-1.11.3/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/dt-core-bootstrap-1.11.3/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/htmlwidgets-1.5.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/htmlwidgets-1.5.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/jquery-3.5.1/jquery-AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/jquery-3.5.1/jquery-AUTHORS.txt -------------------------------------------------------------------------------- /docs/articles/products_list_files/jquery-3.5.1/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/jquery-3.5.1/jquery.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/jquery-3.5.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/jquery-3.5.1/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/jquery-3.5.1/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/jquery-3.5.1/jquery.min.map -------------------------------------------------------------------------------- /docs/articles/products_list_files/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /docs/articles/products_list_files/nouislider-7.0.10/jquery.nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/nouislider-7.0.10/jquery.nouislider.min.js -------------------------------------------------------------------------------- /docs/articles/products_list_files/selectize-0.12.0/selectize.bootstrap3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/products_list_files/selectize-0.12.0/selectize.bootstrap3.css -------------------------------------------------------------------------------- /docs/articles/standalone_execution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/standalone_execution.html -------------------------------------------------------------------------------- /docs/articles/standalone_execution_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/standalone_execution_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/standalone_execution_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/standalone_execution_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/standalone_execution_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/standalone_execution_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/standalone_execution_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/standalone_execution_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/standalone_execution_files/header-attrs-2.9/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/articles/standalone_execution_files/header-attrs-2.9/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/bootstrap-5.1.0/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/bootstrap-5.1.0/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/bootstrap-5.1.0/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.3/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/bootstrap-5.1.3/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.3/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/bootstrap-5.1.3/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.3/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/bootstrap-5.1.3/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.2.2/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/bootstrap-5.2.2/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.2.2/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/bootstrap-5.2.2/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.2.2/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/bootstrap-5.2.2/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/data-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/data-deps.txt -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/extra.css -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/hexlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/hexlogo.png -------------------------------------------------------------------------------- /docs/icon_lettering_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/icon_lettering_color.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/labs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/labs.png -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/MODIStsp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp-1.png -------------------------------------------------------------------------------- /docs/reference/MODIStsp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp-2.png -------------------------------------------------------------------------------- /docs/reference/MODIStsp-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp-package.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_GUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_GUI.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_addindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_addindex.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_download.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_extract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_extract.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_get_prodlayers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_get_prodlayers.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_get_prodnames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_get_prodnames.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_process.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_process_QA_bits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_process_QA_bits.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_process_bands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_process_bands.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_process_indexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_process_indexes.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_read_xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_read_xml.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_resetindexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_resetindexes.html -------------------------------------------------------------------------------- /docs/reference/MODIStsp_vrt_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/MODIStsp_vrt_create.html -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/Rplot002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/Rplot002.png -------------------------------------------------------------------------------- /docs/reference/bbox_from_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/bbox_from_file.html -------------------------------------------------------------------------------- /docs/reference/check_files_existence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/check_files_existence.html -------------------------------------------------------------------------------- /docs/reference/check_proc_opts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/check_proc_opts.html -------------------------------------------------------------------------------- /docs/reference/check_projection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/check_projection.html -------------------------------------------------------------------------------- /docs/reference/figures/irea_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/figures/irea_logo.png -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/figures/logo_irea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/figures/logo_irea.png -------------------------------------------------------------------------------- /docs/reference/get_mod_dates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/get_mod_dates.html -------------------------------------------------------------------------------- /docs/reference/get_mod_dirs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/get_mod_dirs.html -------------------------------------------------------------------------------- /docs/reference/get_mod_filenames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/get_mod_filenames.html -------------------------------------------------------------------------------- /docs/reference/get_reqbands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/get_reqbands.html -------------------------------------------------------------------------------- /docs/reference/get_yeardates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/get_yeardates.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/install_MODIStsp_launcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/install_MODIStsp_launcher.html -------------------------------------------------------------------------------- /docs/reference/load_prodopts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/load_prodopts.html -------------------------------------------------------------------------------- /docs/reference/process_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/process_message.html -------------------------------------------------------------------------------- /docs/reference/reproj_bbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/reproj_bbox.html -------------------------------------------------------------------------------- /docs/reference/set_bandind_matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/set_bandind_matrix.html -------------------------------------------------------------------------------- /docs/reference/split_nodata_values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/reference/split_nodata_values.html -------------------------------------------------------------------------------- /docs/ropensci.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/ropensci.css -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/index.Rmd -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/index.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/ExtData/MODIS_Tiles.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/ExtData/MODIS_Tiles.RData -------------------------------------------------------------------------------- /inst/ExtData/MODIS_Tiles_latlon.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/ExtData/MODIS_Tiles_latlon.RData -------------------------------------------------------------------------------- /inst/ExtData/MODIStsp_ProdOpts.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/ExtData/MODIStsp_ProdOpts.RData -------------------------------------------------------------------------------- /inst/ExtData/MODIStsp_ProdOpts.xml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/ExtData/MODIStsp_ProdOpts.xml.zip -------------------------------------------------------------------------------- /inst/ExtData/MODIStsp_indexes.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /inst/ExtData/mstp_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/ExtData/mstp_defaults.json -------------------------------------------------------------------------------- /inst/Log/MODIStsp_170731_110041.Rout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/app/MSTP_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/MSTP_app.R -------------------------------------------------------------------------------- /inst/app/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/global.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_helpmess_srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_helpmess_srv.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_load_srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_load_srv.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_opts_srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_opts_srv.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_prds_srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_prds_srv.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_save_srv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_save_srv.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_spatemp_srv_bbox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_spatemp_srv_bbox.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_spatemp_srv_draw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_spatemp_srv_draw.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_spatemp_srv_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_spatemp_srv_file.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_spatemp_srv_proj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_spatemp_srv_proj.R -------------------------------------------------------------------------------- /inst/app/srv/mstp_spatemp_srv_tiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/srv/mstp_spatemp_srv_tiles.R -------------------------------------------------------------------------------- /inst/app/ui/mstp_other_ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/ui/mstp_other_ui.R -------------------------------------------------------------------------------- /inst/app/ui/mstp_prds_ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/ui/mstp_prds_ui.R -------------------------------------------------------------------------------- /inst/app/ui/mstp_spatemp_ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/ui/mstp_spatemp_ui.R -------------------------------------------------------------------------------- /inst/app/www/irea_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/www/irea_logo.png -------------------------------------------------------------------------------- /inst/app/www/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/app/www/logo.png -------------------------------------------------------------------------------- /inst/testdata/MOD09A1.A2017193.h18v04.006.2017202035302.hdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/MOD09A1.A2017193.h18v04.006.2017202035302.hdf.zip -------------------------------------------------------------------------------- /inst/testdata/MOD11B2.A2017001.h14v04.006.2017013155631.hdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/MOD11B2.A2017001.h14v04.006.2017013155631.hdf.zip -------------------------------------------------------------------------------- /inst/testdata/MODIStsp_2017-12-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/MODIStsp_2017-12-17.json -------------------------------------------------------------------------------- /inst/testdata/VI_16Days_500m_v6/NDVI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/VI_16Days_500m_v6/NDVI.zip -------------------------------------------------------------------------------- /inst/testdata/extract_polys.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /inst/testdata/extract_polys.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/extract_polys.dbf -------------------------------------------------------------------------------- /inst/testdata/extract_polys.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/extract_polys.prj -------------------------------------------------------------------------------- /inst/testdata/extract_polys.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/extract_polys.qpj -------------------------------------------------------------------------------- /inst/testdata/extract_polys.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/extract_polys.shp -------------------------------------------------------------------------------- /inst/testdata/extract_polys.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/extract_polys.shx -------------------------------------------------------------------------------- /inst/testdata/lakeshapes/garda_lake.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/lakeshapes/garda_lake.dbf -------------------------------------------------------------------------------- /inst/testdata/lakeshapes/garda_lake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/lakeshapes/garda_lake.prj -------------------------------------------------------------------------------- /inst/testdata/lakeshapes/garda_lake.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/lakeshapes/garda_lake.shp -------------------------------------------------------------------------------- /inst/testdata/lakeshapes/garda_lake.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/lakeshapes/garda_lake.shx -------------------------------------------------------------------------------- /inst/testdata/lakeshapes/iseo_lake.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/lakeshapes/iseo_lake.dbf -------------------------------------------------------------------------------- /inst/testdata/lakeshapes/iseo_lake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/lakeshapes/iseo_lake.prj -------------------------------------------------------------------------------- /inst/testdata/lakeshapes/iseo_lake.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/lakeshapes/iseo_lake.shp -------------------------------------------------------------------------------- /inst/testdata/lakeshapes/iseo_lake.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/lakeshapes/iseo_lake.shx -------------------------------------------------------------------------------- /inst/testdata/spatial_file.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /inst/testdata/spatial_file.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/spatial_file.dbf -------------------------------------------------------------------------------- /inst/testdata/spatial_file.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/spatial_file.prj -------------------------------------------------------------------------------- /inst/testdata/spatial_file.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/spatial_file.shp -------------------------------------------------------------------------------- /inst/testdata/spatial_file.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/spatial_file.shx -------------------------------------------------------------------------------- /inst/testdata/test01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test01.json -------------------------------------------------------------------------------- /inst/testdata/test01a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test01a.json -------------------------------------------------------------------------------- /inst/testdata/test02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test02.json -------------------------------------------------------------------------------- /inst/testdata/test03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test03.json -------------------------------------------------------------------------------- /inst/testdata/test03a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test03a.json -------------------------------------------------------------------------------- /inst/testdata/test04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test04.json -------------------------------------------------------------------------------- /inst/testdata/test04a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test04a.json -------------------------------------------------------------------------------- /inst/testdata/test04b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test04b.json -------------------------------------------------------------------------------- /inst/testdata/test04c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test04c.json -------------------------------------------------------------------------------- /inst/testdata/test05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test05.json -------------------------------------------------------------------------------- /inst/testdata/test05a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test05a.json -------------------------------------------------------------------------------- /inst/testdata/test06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test06.json -------------------------------------------------------------------------------- /inst/testdata/test06a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test06a.json -------------------------------------------------------------------------------- /inst/testdata/test06b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test06b.json -------------------------------------------------------------------------------- /inst/testdata/test07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test07.json -------------------------------------------------------------------------------- /inst/testdata/test07b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test07b.json -------------------------------------------------------------------------------- /inst/testdata/test_MOD10A2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test_MOD10A2.json -------------------------------------------------------------------------------- /inst/testdata/test_MOD13A2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test_MOD13A2.json -------------------------------------------------------------------------------- /inst/testdata/test_addindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test_addindex.json -------------------------------------------------------------------------------- /inst/testdata/test_extract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test_extract.json -------------------------------------------------------------------------------- /inst/testdata/test_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/test_mask.json -------------------------------------------------------------------------------- /inst/testdata/testtemp_win.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/inst/testdata/testtemp_win.json -------------------------------------------------------------------------------- /inst/testdata/wrong_json.json: -------------------------------------------------------------------------------- 1 | { 2 | "pippo": "Surf_Temp_8Days_GridSin (M*D11B2)" 3 | 4 | } 5 | -------------------------------------------------------------------------------- /man/MODIStsp-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp-package.Rd -------------------------------------------------------------------------------- /man/MODIStsp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp.Rd -------------------------------------------------------------------------------- /man/MODIStsp_GUI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_GUI.Rd -------------------------------------------------------------------------------- /man/MODIStsp_addindex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_addindex.Rd -------------------------------------------------------------------------------- /man/MODIStsp_download.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_download.Rd -------------------------------------------------------------------------------- /man/MODIStsp_extract.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_extract.Rd -------------------------------------------------------------------------------- /man/MODIStsp_get_prodlayers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_get_prodlayers.Rd -------------------------------------------------------------------------------- /man/MODIStsp_get_prodnames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_get_prodnames.Rd -------------------------------------------------------------------------------- /man/MODIStsp_process.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_process.Rd -------------------------------------------------------------------------------- /man/MODIStsp_process_QA_bits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_process_QA_bits.Rd -------------------------------------------------------------------------------- /man/MODIStsp_process_bands.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_process_bands.Rd -------------------------------------------------------------------------------- /man/MODIStsp_process_indexes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_process_indexes.Rd -------------------------------------------------------------------------------- /man/MODIStsp_read_xml.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_read_xml.Rd -------------------------------------------------------------------------------- /man/MODIStsp_resetindexes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_resetindexes.Rd -------------------------------------------------------------------------------- /man/MODIStsp_vrt_create.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/MODIStsp_vrt_create.Rd -------------------------------------------------------------------------------- /man/bbox_from_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/bbox_from_file.Rd -------------------------------------------------------------------------------- /man/check_files_existence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/check_files_existence.Rd -------------------------------------------------------------------------------- /man/check_proc_opts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/check_proc_opts.Rd -------------------------------------------------------------------------------- /man/check_projection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/check_projection.Rd -------------------------------------------------------------------------------- /man/figures/irea_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/figures/irea_logo.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/get_mod_dates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/get_mod_dates.Rd -------------------------------------------------------------------------------- /man/get_mod_dirs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/get_mod_dirs.Rd -------------------------------------------------------------------------------- /man/get_mod_filenames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/get_mod_filenames.Rd -------------------------------------------------------------------------------- /man/get_reqbands.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/get_reqbands.Rd -------------------------------------------------------------------------------- /man/get_yeardates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/get_yeardates.Rd -------------------------------------------------------------------------------- /man/install_MODIStsp_launcher.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/install_MODIStsp_launcher.Rd -------------------------------------------------------------------------------- /man/load_prodopts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/load_prodopts.Rd -------------------------------------------------------------------------------- /man/process_message.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/process_message.Rd -------------------------------------------------------------------------------- /man/reproj_bbox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/reproj_bbox.Rd -------------------------------------------------------------------------------- /man/set_bandind_matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/set_bandind_matrix.Rd -------------------------------------------------------------------------------- /man/split_nodata_values.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/man/split_nodata_values.Rd -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/spelling.Rout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/spelling.Rout.save -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-split_nodata_values.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test-split_nodata_values.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_00.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_00.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_01.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_02.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_03.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_03.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_04.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_04.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_05.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_05.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_06.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_06.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_07.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_07.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_08.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_08.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_addindex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_addindex.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_extract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_extract.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_readxml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_readxml.R -------------------------------------------------------------------------------- /tests/testthat/test_MODIStsp_resetindexes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_MODIStsp_resetindexes.R -------------------------------------------------------------------------------- /tests/testthat/test_bbox_from_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_bbox_from_file.R -------------------------------------------------------------------------------- /tests/testthat/test_check_proj4string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_check_proj4string.R -------------------------------------------------------------------------------- /tests/testthat/test_get_yeardates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/tests/testthat/test_get_yeardates.R -------------------------------------------------------------------------------- /utils/WIP/MODIStest_check_md5.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/utils/WIP/MODIStest_check_md5.R -------------------------------------------------------------------------------- /utils/WIP/MODIStsp_change_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/utils/WIP/MODIStsp_change_options.R -------------------------------------------------------------------------------- /utils/WIP/check_usearia.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/utils/WIP/check_usearia.R -------------------------------------------------------------------------------- /utils/logoxcf.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/utils/logoxcf.xcf -------------------------------------------------------------------------------- /vignettes/GUI_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/GUI_1.PNG -------------------------------------------------------------------------------- /vignettes/GUI_2_bbox.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/GUI_2_bbox.PNG -------------------------------------------------------------------------------- /vignettes/GUI_2_file.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/GUI_2_file.PNG -------------------------------------------------------------------------------- /vignettes/GUI_2_tiles.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/GUI_2_tiles.PNG -------------------------------------------------------------------------------- /vignettes/GUI_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/GUI_3.PNG -------------------------------------------------------------------------------- /vignettes/GUI_bar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/GUI_bar.PNG -------------------------------------------------------------------------------- /vignettes/GUI_newind.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/GUI_newind.PNG -------------------------------------------------------------------------------- /vignettes/MODIStsp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/MODIStsp.Rmd -------------------------------------------------------------------------------- /vignettes/MODIStsp.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/MODIStsp.bib -------------------------------------------------------------------------------- /vignettes/analyze.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/analyze.Rmd -------------------------------------------------------------------------------- /vignettes/discovered_bug.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/discovered_bug.Rmd -------------------------------------------------------------------------------- /vignettes/faq.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/faq.Rmd -------------------------------------------------------------------------------- /vignettes/installation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/installation.Rmd -------------------------------------------------------------------------------- /vignettes/interactive_execution.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/interactive_execution.Rmd -------------------------------------------------------------------------------- /vignettes/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/logo.png -------------------------------------------------------------------------------- /vignettes/lorenzo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/lorenzo.Rmd -------------------------------------------------------------------------------- /vignettes/noninteractive_execution.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/noninteractive_execution.Rmd -------------------------------------------------------------------------------- /vignettes/output.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/output.Rmd -------------------------------------------------------------------------------- /vignettes/products_list.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/products_list.Rmd -------------------------------------------------------------------------------- /vignettes/standalone_execution.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/MODIStsp/HEAD/vignettes/standalone_execution.Rmd --------------------------------------------------------------------------------