generate_hypsography: generate_hypsography

Description Usage Arguments Examples

View source: R/hypsography.R

Description

generate_hypsography

Usage

1
generate_hypsography(nlayers, max_depth, surface_area, layer_thickness = NA)

Arguments

nlayers

integer number of layers

max_depth

numeric max depth

surface_area

numeric surface area

layer_thickness

numeric optional overrides nlayers#'

Examples

1
2
3
4
5
6
7
nlayers <- 14
max_depth <- 18.288000
surface_area <- 637641.6
res <- generate_hypsography(nlayers, max_depth, surface_area)
plot(res[,c("area", "depth_linear")],
    ylim = c(max(res$depth_linear), min(res$depth_linear)))
points(res[,c("area", "depth_ellipsoid")], col = "red", pch = 19)

jsta/glmutils documentation built on May 24, 2019, 4:07 a.m.