|
Scientific Data Formats: HDF-EOS |
|
This function reads data from the specified fields and records of a single level in a point.
Result = EOS_PT_READLEVEL(pointID, level, fieldlist, nrec, recs, buffer)
Returns SUCCEED (0) if successful and FAIL (–1) otherwise.
Point id (long) returned by EOS_PT_CREATE or EOS_PT_ATTACH.
Level to read (0-based long).
List of fields (string) to read.
Number of records (long) to read.
Record number of records to read (0-based long).
A named variable that will contain the buffer to store data. This buffer is in packed format. Use HDF_UNPACKDATA to convert it into IDL variables.
None
In this example, we read records 0, 2, and 3 from the Temperature and Mode fields in the first level of the point referred to by point ID, pointID. Temperature is a 32-bit float field and Mode is a 4 character field (HDF types 5 and 4 respectively):