Closed dankelley closed 4 months ago
For reference, here is what an AMSR object, say a
, now holds:
a[["?]]
$metadata
[1] "filename" "flags" "latitude" "longitude" "spacecraft"
[6] "type" "units"
$metadataDerived
NULL
$data
[1] "AWwind" "cloud" "coastMask" "landMask" "LFwind"
[6] "MFwind" "noObsMask" "rain" "seaIceMask" "SST"
[11] "vapor"
$dataDerived
NULL
I'll add time and maybe some other things later today.
The updated read.amsr()
saves 6 more entries in the metadata
slot. The entries timeEnd
, platform
, and instrument
, are reported by summary()
. The entries version
, sensor
, and references
are of less general interest, so they are not reported by summary
. Of course, all are available through the [[
mechanism, and are revealed by the [["?"]]
scheme.
I just noticed that
time
is not stored in the object returned byread.amsr()
. I usually infer that from the filename, but that seems like a bad idea because a user might rename files. FYI, below shows the info in a file I just downloaded.It looks like we ought to save the start and stop times. I'll decide whether to name them
timeStart
andtimeEnd
or just make a 2-element item calledtime
. (I think the former makes more sense but the latter will be easier to guess.