processing.log.append {oce} | R Documentation |
Appends a time-stamped item to the processing log of an object.
processing.log.append(x, action="")
x |
An oce object. |
action |
A character string describing the action. |
This is used to add a time-stamped item to the processing log of the object.
The object, with a new entry in its log.
Dan Kelley
## Not run: # This (and another typographical correction) was done in creating data(section). data(ctd) ctd$metadata$latitude <- ctd$metadata$latitude + 1 ctd <- processing.log.append(ctd, "DEK: move station a degree north") ## End(Not run)