Lists all available dates for a MODIS Land Products Subset product at a particular location.
mt_dates(product, lat, lon, site_id, network)
a valid MODIS product name
latitude in decimal degrees
longitude in decimal degrees
site id (overides lat / lon)
the network for which to generate the site list, when not provided the complete list is provided
A data frame of all available dates for a MODIS Land Products Subsets products at the given location.
# \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
# }