print.SeaSondeRCS | R Documentation |
This method provides a formatted printout of the SeaSondeRCS object, displaying the station code, date/time, number of Doppler cells, and number of range cells. It is designed for interactive use, allowing users to quickly inspect the object.
## S3 method for class 'SeaSondeRCS'
print(x, ...)
x |
An object of class "SeaSondeRCS". This object should contain at least a header list with metadata (such as station name, date/time, and cell counts). |
... |
Additional arguments. Currently not used, but supplied for compatibility with generic print methods. |
The function uses the whisker
package to render a template string with the
header information.
Invisibly returns the original SeaSondeRCS object.
obj <- list(header = list(nSiteCodeName = "Station1",
nDateTime = Sys.time(),
nDopplerCells = 256,
nRangeCells = 100))
class(obj) <- "SeaSondeRCS"
print(obj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.