merge,argoFloats-method | R Documentation |
Merge argoFloats Indices
## S4 method for signature 'argoFloats'
merge(x, y, ...)
x, y |
two |
... |
optional additional objects like |
An argoFloats
object of type index
.
Dan Kelley
library(argoFloats)
data(index)
# Index of floats within 50km of Abaca Island
C <- subset(index, circle=list(longitude=-77.5, latitude=27.5, radius=50))
# Index of floats within a rectangle near Abaca Island
lonRect <- c(-76.5, -76)
latRect <- c(26.5, 27.5)
R <- subset(index, rectangle=list(longitude=lonRect, latitude=latRect))
RC <- merge(C, R)
plot(RC, bathymetry=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.