platemodel-class {rgplates} | R Documentation |
Class of objects representing plate tectonic models
Description
Meta-object containing paths to a unique plate tectonic model
Usage
## S4 method for signature 'platemodel'
initialize(
.Object,
rotation = NULL,
features = NULL,
name = NULL,
polygons = NULL
)
Arguments
.Object |
Constructor argument (not needed). |
rotation |
( |
features |
( |
name |
( |
polygons |
( |
Value
A platemodel
class object.
Examples
# path to provided archive
archive <- file.path(
system.file("extdata", package="rgplates"),
"paleomap_v3.zip")
# extract to temporary directory
unzip(archive, exdir=tempdir())
# path to the rotation file
rotPath <- file.path(tempdir(),
"PALEOMAP_PlateModel.rot")
# path to the polygons
polPath <- file.path(tempdir(),
"PALEOMAP_PlatePolygons.gpml")
# register in R - to be used in reconstruct()
model <- platemodel(rotation=rotPath, features=c("static_polygons"=polPath))
[Package rgplates version 0.4.0 Index]