Read SeaSonde RCSSW File and Create SeaSondeRCS Object
Source:R/SeaSondeRCSSW.R
seasonder_readSeaSondeRCSSWFile.Rd
This function reads a SeaSonde RCSSW file from a specified file path and parses its content into a SeaSondeRCS object. The file is processed by reading its header and body sections using CSSW specifications provided via a YAML file.
Usage
seasonder_readSeaSondeRCSSWFile(
filepath,
specs_path = seasonder_defaultSpecsFilePath("CSSW"),
endian = "big"
)
Arguments
- filepath
A character string specifying the path to the SeaSonde RCSSW file.
- specs_path
A character string specifying the path to the YAML file containing CSSW specifications. Defaults to the output of
seasonder_defaultSpecsFilePath("CSSW")
.- endian
A character string indicating the byte order used in the file. Defaults to
"big"
.
Details
The function executes the following steps:
Sets up error handling parameters specific to the function.
Retrieves YAML specifications for the key size block from the CSSW spec file.
Attempts to open the file in binary mode ("rb") with warnings suppressed.
Reads the file key and uses it to extract file specs.
Reads the header key, retrieves header specs, and parses the CSSW header.
Converts the CSSW header into a valid SeaSondeRCS header.
Reads the body key, retrieves body specs, and parses the CSSW body.
Transforms the CSSW body into a SeaSondeRCS data structure.
Combines the header and data into a SeaSondeRCS object.