MODIS-package.R 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #' MODIS Acquisition and Processing
  2. #'
  3. #' Download and processing functionalities for the Moderate Resolution Imaging
  4. #' Spectroradiometer (MODIS). The package provides automated access to the
  5. #' global online data archives (LPDAAC and LAADS) and processing capabilities
  6. #' such as file conversion, mosaicking, subsetting and time series filtering.
  7. #'
  8. #' @name MODIS-package
  9. #' @docType package
  10. #' @title MODIS Acquisition and Processing
  11. #' @author Matteo Mattiuzzi, Jan Verbesselt, Tomislav Hengl, Anja Klisch,
  12. #' Forrest Stevens, Steven Mosher, Bradley Evans, Agustin Lobo, Florian Detsch
  13. #' \cr
  14. #' \cr
  15. #' \emph{Maintainer:} Matteo Mattiuzzi \email{matteo@@mattiuzzi.com}
  16. #'
  17. #' @import bitops mapdata parallel ptw raster rgdal sp XML
  18. #' @importFrom devtools install_github
  19. #' @importFrom grDevices dev.new dev.off png
  20. #' @importFrom graphics abline box grid locator title
  21. #' @importFrom mapedit selectFeatures
  22. #' @importFrom maps map.axes
  23. #' @importFrom maptools map2SpatialPolygons map2SpatialLines checkPolygonsHoles
  24. #' @importFrom methods as new slot
  25. #' @importFrom RCurl getURL
  26. #' @importFrom rgeos gBuffer gIsValid
  27. #' @importFrom sf st_as_sf
  28. #' @importFrom stats na.omit smooth.spline
  29. #' @importFrom utils capture.output download.file installed.packages read.table vi write.csv write.table
  30. #' @rawNamespace if (.Platform$OS.type=="windows") importFrom(utils,shortPathName)
  31. #'
  32. #' @keywords package
  33. #'
  34. NULL