connect: Connect 'hero_radsplines'

View source: R/connect.R

connectR Documentation

Connect hero_radsplines

Description

connect joins multiple hero_radspline objects into a single hero_radspline. The e

Usage

connect(...)

Arguments

...

A sequence of hero_radspline objects from the radspline function.

Value

A combined hero_radspline

See Also

radspline

Examples

border = border.grid(lon, lat)
s1 = radspline(nknots = 36, border = border)
plot(s1)
s2 = radspline(nknots = 36 * 4, border = border,
               width = 6)
plot(s2)
par(mfrow = c(1, 2))
plot(s1)
plot(s2)
par(mfrow = c(1, 1))
s = connect(s1, s2)
plot(s)

hero documentation built on July 26, 2023, 5:11 p.m.