Converts depth strata to standardized station suffixes for consistent station ID creation.
Usage
station_suffix(depth_strata)
Arguments
- depth_strata
Character vector of depth strata from stratify()
Value
Character vector of station suffixes
Examples
if (FALSE) { # \dontrun{
# Basic usage
depths <- c(0, 3, 8, 15, 25)
strata <- stratify(depths)
station_suffix(strata)
# Complete workflow
survey_data$depth_strata <- stratify(survey_data$station_depth_m)
survey_data$station_suffix <- station_suffix(survey_data$depth_strata)
} # }