Description Usage Arguments Details Value Examples
View source: R/goesaodc_listScanFiles.R
Lists GOES AOD scan files for a given datetime or time range. If
just datetime
is given, then only the scan file closest to that time
will be listed. If endtime
is specified as well, then all scans from
datetime
up to (but not including) endtime
will be listed.
1 2 3 4 5 6 7 8 9 |
satID |
ID of the source GOES satellite ('G16' or 'G17'). |
datetime |
Datetime as a Ymd HMS or Julian formatted string, or a
|
endtime |
End time as a Ymd HMS or Julian formatted string, or a
|
timezone |
Timezone used to interpret |
isJulian |
Logical value determining whether |
useRemote |
Logical specifying whether to look for files in
|
baseUrl |
URL of remote database. Defaults to "https://tools-1.airfire.org/Satellite/". |
If useRemote=FALSE
and there are no scan files available for
the day of the requested datetime
, then NULL
will be returned.
Vector of scan filenames.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | library(MazamaSatelliteUtils)
setSatelliteDataDir("~/Data/Satellite")
goesaodc_listScanFiles(
satID = "G17",
datetime = "2020-09-08 12:30",
timezone = "UTC",
useRemote = TRUE
)
goesaodc_listScanFiles(
satID = "G17",
datetime = "2020-09-08 12:00",
endtime = "2020-09-08 13:00",
timezone = "UTC",
useRemote = TRUE
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.