Skip to contents

Getter for ProcessingSteps

Usage

seasonder_getSeaSondeRCS_ProcessingSteps(seasonder_cs_object)

Arguments

seasonder_cs_object

SeaSonderCS object

Value

A list containing the processing steps of the SeaSondeRCS object.

Examples

# Create a SeaSondeRCS object for examples
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)
#> seasonder_createSeaSondeRAPM:  APM object created successfully.
cs_obj <- seasonder_createSeaSondeRCS(cs_file, seasonder_apm_object = apm_obj)
#> new_SeaSondeRCS:  SeaSondeRCS object created successfully.
# Retrieve processing steps
processing_steps <- seasonder_getSeaSondeRCS_ProcessingSteps(cs_obj)
print(processing_steps)
#> [1] "2025-04-28 09:33:39.826182: FOR parameters set."                                                                       
#> [2] "2025-04-28 09:33:39.848825: NoiseLevel for antenna 1 computed."                                                        
#> [3] "2025-04-28 09:33:39.860151: NoiseLevel for antenna 2 computed."                                                        
#> [4] "2025-04-28 09:33:39.875825: NoiseLevel for antenna 3 computed."                                                        
#> [5] "2025-04-28 09:33:39.884051: Created from /home/runner/work/_temp/Library/SeaSondeR/css_data/CSS_TORA_24_04_04_0700.cs."