Download .hdf file of a MAIAC tile for a particular day.

maiac_downloadNorthAmerica(
  tileNumber = NULL,
  date = NULL,
  time = NULL,
  julianDate = NULL,
  product = "MAIACAAOT",
  baseUrl = NULL
)

Arguments

tileNumber

number code for tile (eg h01v04).

date

desired date (integer, character representing YYYYMMDD[HH] or datetime object)

time

UTC hour and minute for data (HHMM). Optional when only one file for the specified date.

julianDate

desired date on Julian calendar (YYYYDDD). Ignored if 'date' is specified.

product

product code (MAIACAAOT | MAIACABRF | MAIACRTLS | MAIACTAOT | MAIACTBRF)

baseUrl

base URL for data queries

Value

0 if successful.

References

Interagency Real Time Smoke Monitoring

Examples

if (FALSE) { setSatelliteDataDir("~/Data/Satellite") maiac_downloadNorthAmerica( "h01v04", 20171009, 2150 ) }