seasonder_getSeaSondeRCS_APM {SeaSondeR} | R Documentation |
Retrieve the APM Attribute from a SeaSondeRCS Object
Description
This function extracts the APM (Antenna Pattern Matrix or similar metadata) attribute from a SeaSondeRCS object. This attribute is stored as an attribute named "APM" within the object.
Usage
seasonder_getSeaSondeRCS_APM(seasonder_cs_object)
Arguments
seasonder_cs_object |
A SeaSondeRCS object. |
Details
The function uses attr(..., exact = TRUE)
to ensure that the correct attribute is retrieved.
Value
The value of the "APM" attribute from the SeaSondeRCS object.
Examples
# Create a minimal SeaSondeRCS object
cs_obj <- structure(list(data = list(a = 1, b = 2)), class = "SeaSondeRCS")
apm_value <- seasonder_getSeaSondeRCS_APM(cs_obj)
print(apm_value)
[Package SeaSondeR version 0.2.8 Index]