load a raw dataframe

maiac_loadRawDataframe(
  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

Raw tibble of MAIAC data

Examples

if (FALSE) { maiac <- maiac_loadRawDataframe("h01v04", 20171009, 2150) }