├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── MODISTools-logo.ai ├── MODISTools-logo.png ├── MODISTools.Rproj ├── NAMESPACE ├── NEWS.md ├── R ├── coordinate_conversion.R ├── data.R ├── mt_bands.R ├── mt_batch_subset.R ├── mt_dates.R ├── mt_products.R ├── mt_sites.R ├── mt_subset.R ├── mt_to_terra.R └── zzz.R ├── README-not.md ├── README.Rmd ├── README.md ├── cran-comments.md ├── data ├── arcachon_lai.rda └── arcachon_lc.rda ├── docs ├── 404.html ├── CONDUCT.html ├── LICENSE-text.html ├── articles │ ├── index.html │ ├── modistools-vignette.html │ └── modistools-vignette_files │ │ ├── accessible-code-block-0.0.1 │ │ └── empty-anchor.js │ │ ├── figure-html │ │ ├── unnamed-chunk-10-1.png │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-14-1.png │ │ ├── unnamed-chunk-5-1.png │ │ ├── unnamed-chunk-6-1.png │ │ ├── unnamed-chunk-7-1.png │ │ ├── unnamed-chunk-8-1.png │ │ └── unnamed-chunk-9-1.png │ │ ├── header-attrs-2.11 │ │ └── header-attrs.js │ │ └── header-attrs-2.8 │ │ └── header-attrs.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── arcachon_lai.html │ ├── arcachon_lc.html │ ├── index.html │ ├── ll_to_bb.html │ ├── mt_bands.html │ ├── mt_batch_subset.html │ ├── mt_bbox.html │ ├── mt_dates.html │ ├── mt_products.html │ ├── mt_read.html │ ├── mt_sites.html │ ├── mt_subset.html │ ├── mt_to_raster.html │ ├── mt_to_terra.html │ ├── mt_write.html │ ├── my_sites.csv │ └── sin_to_ll.html └── sitemap.xml ├── inst └── CITATION ├── man ├── arcachon_lai.Rd ├── arcachon_lc.Rd ├── mt_bands.Rd ├── mt_batch_subset.Rd ├── mt_bbox.Rd ├── mt_dates.Rd ├── mt_products.Rd ├── mt_sites.Rd ├── mt_subset.Rd ├── mt_to_terra.Rd └── sin_to_ll.Rd ├── tests ├── testthat.R └── testthat │ ├── test_coordinate_conversions.R │ ├── test_download_functions.R │ └── test_server_errors.R └── vignettes └── modistools-vignette.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/LICENSE -------------------------------------------------------------------------------- /MODISTools-logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/MODISTools-logo.ai -------------------------------------------------------------------------------- /MODISTools-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/MODISTools-logo.png -------------------------------------------------------------------------------- /MODISTools.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/MODISTools.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/coordinate_conversion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/coordinate_conversion.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/data.R -------------------------------------------------------------------------------- /R/mt_bands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/mt_bands.R -------------------------------------------------------------------------------- /R/mt_batch_subset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/mt_batch_subset.R -------------------------------------------------------------------------------- /R/mt_dates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/mt_dates.R -------------------------------------------------------------------------------- /R/mt_products.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/mt_products.R -------------------------------------------------------------------------------- /R/mt_sites.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/mt_sites.R -------------------------------------------------------------------------------- /R/mt_subset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/mt_subset.R -------------------------------------------------------------------------------- /R/mt_to_terra.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/mt_to_terra.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README-not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/README-not.md -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/arcachon_lai.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/data/arcachon_lai.rda -------------------------------------------------------------------------------- /data/arcachon_lc.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/data/arcachon_lc.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/CONDUCT.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/modistools-vignette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette.html -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/modistools-vignette_files/header-attrs-2.8/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/articles/modistools-vignette_files/header-attrs-2.8/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/arcachon_lai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/arcachon_lai.html -------------------------------------------------------------------------------- /docs/reference/arcachon_lc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/arcachon_lc.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/ll_to_bb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/ll_to_bb.html -------------------------------------------------------------------------------- /docs/reference/mt_bands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_bands.html -------------------------------------------------------------------------------- /docs/reference/mt_batch_subset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_batch_subset.html -------------------------------------------------------------------------------- /docs/reference/mt_bbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_bbox.html -------------------------------------------------------------------------------- /docs/reference/mt_dates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_dates.html -------------------------------------------------------------------------------- /docs/reference/mt_products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_products.html -------------------------------------------------------------------------------- /docs/reference/mt_read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_read.html -------------------------------------------------------------------------------- /docs/reference/mt_sites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_sites.html -------------------------------------------------------------------------------- /docs/reference/mt_subset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_subset.html -------------------------------------------------------------------------------- /docs/reference/mt_to_raster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_to_raster.html -------------------------------------------------------------------------------- /docs/reference/mt_to_terra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_to_terra.html -------------------------------------------------------------------------------- /docs/reference/mt_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/mt_write.html -------------------------------------------------------------------------------- /docs/reference/my_sites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/my_sites.csv -------------------------------------------------------------------------------- /docs/reference/sin_to_ll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/reference/sin_to_ll.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/arcachon_lai.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/arcachon_lai.Rd -------------------------------------------------------------------------------- /man/arcachon_lc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/arcachon_lc.Rd -------------------------------------------------------------------------------- /man/mt_bands.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/mt_bands.Rd -------------------------------------------------------------------------------- /man/mt_batch_subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/mt_batch_subset.Rd -------------------------------------------------------------------------------- /man/mt_bbox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/mt_bbox.Rd -------------------------------------------------------------------------------- /man/mt_dates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/mt_dates.Rd -------------------------------------------------------------------------------- /man/mt_products.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/mt_products.Rd -------------------------------------------------------------------------------- /man/mt_sites.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/mt_sites.Rd -------------------------------------------------------------------------------- /man/mt_subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/mt_subset.Rd -------------------------------------------------------------------------------- /man/mt_to_terra.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/mt_to_terra.Rd -------------------------------------------------------------------------------- /man/sin_to_ll.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/man/sin_to_ll.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_coordinate_conversions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/tests/testthat/test_coordinate_conversions.R -------------------------------------------------------------------------------- /tests/testthat/test_download_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/tests/testthat/test_download_functions.R -------------------------------------------------------------------------------- /tests/testthat/test_server_errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/tests/testthat/test_server_errors.R -------------------------------------------------------------------------------- /vignettes/modistools-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/MODISTools/HEAD/vignettes/modistools-vignette.Rmd --------------------------------------------------------------------------------