seasonder_getMUSICInterpolatedDopplerCellsIndex {SeaSondeR} | R Documentation |
Retrieve Interpolated Doppler Cells Index from a SeaSondeRCS Object
Description
This function extracts the index of interpolated Doppler cells, stored in the MUSIC_data attribute of a SeaSondeRCS object.
Usage
seasonder_getMUSICInterpolatedDopplerCellsIndex(seasonder_cs_object)
Arguments
seasonder_cs_object |
A SeaSondeRCS object containing MUSIC data. |
Details
The interpolated doppler cells index is part of the MUSIC_data and is used to identify which Doppler bins were introduced during the interpolation process.
Value
A vector of indices corresponding to the interpolated Doppler cells.
Examples
# Minimal example for seasonder_getMUSICInterpolatedDopplerCellsIndex
cs_file <- system.file("css_data/CSS_TORA_24_04_04_0700.cs", package = "SeaSondeR")
apm_file <- system.file("css_data/MeasPattern.txt", package = "SeaSondeR")
apm_obj <- seasonder_readSeaSondeRAPMFile(apm_file)
cs_obj <- seasonder_createSeaSondeRCS(cs_file, seasonder_apm_object = apm_obj)
doppler_index <- seasonder_getMUSICInterpolatedDopplerCellsIndex(cs_obj)
print(doppler_index)
[Package SeaSondeR version 0.2.8 Index]