GetBands.Rd 811 B

12345678910111213141516171819
  1. \name{GetBands}
  2. \alias{GetBands}
  3. \title{Get MODIS Product Data Band Names}
  4. \description{Internal function that uses the MODIS SOAP Web Service to retrieve a list of all of the codes to identify the data bands within a specified MODIS product.}
  5. \usage{GetBands(Product)}
  6. \arguments{
  7. \item{Product}{Character string; the unique code for a given MODIS product. Will only accept one product code. See references for the product list.}
  8. }
  9. \value{A character vector; containing the codes for each data band.}
  10. \references{
  11. \url{https://daacmodis.ornl.gov/cgi-bin/MODIS/GLBVIZ_1_Glb/modis_subset_order_global_col5.pl}
  12. }
  13. \author{Sean Tuck}
  14. \seealso{\code{\link[MODISTools:MODISSubsets]{MODISSubsets}}}
  15. \examples{
  16. \dontrun{ # dontrun() used because running the example requires internet access.
  17. GetBands("MOD13Q1")}
  18. }