├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── RcppExports.R ├── cmr.R ├── cmr_funs.R ├── download_help.R ├── eviirs.R ├── filter.R ├── getAVHRR.R ├── getEE.R ├── getERS.R ├── getLandsat.R ├── getNASA.R ├── lunaOptions.R ├── mesma.R ├── modis_qc.R ├── sentinel.R ├── sharpen.R └── time.R ├── README.md ├── inst ├── cmr │ └── cmr_sources.rds └── ex │ └── lsat.tif ├── man ├── filter.Rd ├── getAVHRR.Rd ├── getCGLS.Rd ├── getEE.Rd ├── getERS.Rd ├── getLandsat.Rd ├── getMODIS.Rd ├── getNASA.Rd ├── getProducts.Rd ├── luna-package.Rd ├── mesma.Rd ├── modis_date.Rd ├── modis_extent.Rd ├── modis_mask.Rd ├── pansharpen.Rd └── productInfo.Rd └── src ├── Makevars ├── Makevars.ucrt ├── RcppExports.cpp ├── modisbits.cpp └── nnls_solver.cpp /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/cmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/cmr.R -------------------------------------------------------------------------------- /R/cmr_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/cmr_funs.R -------------------------------------------------------------------------------- /R/download_help.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/download_help.R -------------------------------------------------------------------------------- /R/eviirs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/eviirs.R -------------------------------------------------------------------------------- /R/filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/filter.R -------------------------------------------------------------------------------- /R/getAVHRR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/getAVHRR.R -------------------------------------------------------------------------------- /R/getEE.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/getEE.R -------------------------------------------------------------------------------- /R/getERS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/getERS.R -------------------------------------------------------------------------------- /R/getLandsat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/getLandsat.R -------------------------------------------------------------------------------- /R/getNASA.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/getNASA.R -------------------------------------------------------------------------------- /R/lunaOptions.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/mesma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/mesma.R -------------------------------------------------------------------------------- /R/modis_qc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/modis_qc.R -------------------------------------------------------------------------------- /R/sentinel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/sentinel.R -------------------------------------------------------------------------------- /R/sharpen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/sharpen.R -------------------------------------------------------------------------------- /R/time.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/R/time.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/README.md -------------------------------------------------------------------------------- /inst/cmr/cmr_sources.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/inst/cmr/cmr_sources.rds -------------------------------------------------------------------------------- /inst/ex/lsat.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/inst/ex/lsat.tif -------------------------------------------------------------------------------- /man/filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/filter.Rd -------------------------------------------------------------------------------- /man/getAVHRR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/getAVHRR.Rd -------------------------------------------------------------------------------- /man/getCGLS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/getCGLS.Rd -------------------------------------------------------------------------------- /man/getEE.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/getEE.Rd -------------------------------------------------------------------------------- /man/getERS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/getERS.Rd -------------------------------------------------------------------------------- /man/getLandsat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/getLandsat.Rd -------------------------------------------------------------------------------- /man/getMODIS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/getMODIS.Rd -------------------------------------------------------------------------------- /man/getNASA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/getNASA.Rd -------------------------------------------------------------------------------- /man/getProducts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/getProducts.Rd -------------------------------------------------------------------------------- /man/luna-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/luna-package.Rd -------------------------------------------------------------------------------- /man/mesma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/mesma.Rd -------------------------------------------------------------------------------- /man/modis_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/modis_date.Rd -------------------------------------------------------------------------------- /man/modis_extent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/modis_extent.Rd -------------------------------------------------------------------------------- /man/modis_mask.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/modis_mask.Rd -------------------------------------------------------------------------------- /man/pansharpen.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/pansharpen.Rd -------------------------------------------------------------------------------- /man/productInfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/man/productInfo.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.ucrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/src/Makevars.ucrt -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/modisbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/src/modisbits.cpp -------------------------------------------------------------------------------- /src/nnls_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/luna/HEAD/src/nnls_solver.cpp --------------------------------------------------------------------------------