Lists all available dates for a MODIS Land Products Subset product at a particular location.

mt_dates(product, lat, lon, site_id, network)

Arguments

product

a valid MODIS product name

lat

latitude in decimal degrees

lon

longitude in decimal degrees

site_id

site id (overides lat / lon)

network

the network for which to generate the site list, when not provided the complete list is provided

Value

A data frame of all available dates for a MODIS Land Products Subsets products at the given location.

Examples


# \donttest{
# list all available MODIS Land Products Subsets products
bands <- mt_dates(product = "MOD11A2", lat = 40, lon = -110)
head(bands)
#>   modis_date calendar_date
#> 1   A2000049    2000-02-18
#> 2   A2000057    2000-02-26
#> 3   A2000065    2000-03-05
#> 4   A2000073    2000-03-13
#> 5   A2000081    2000-03-21
#> 6   A2000089    2000-03-29
# }