ReadShapefile_TreeRingPoints | R Documentation |
Read a shape file of Tree Ring Points ( P : radial input and correction points)
ReadShapefile_TreeRingPoints(
filename = "Abies_277_h400_TreeRing_Points.shp",
id.tag = "id",
ring.tag = "ring"
)
filename |
a file name of Tree ring points (shape file ) |
id.tag |
string, column name of id (attribute table) |
ring.tag |
string, column name of ring years (0 is cambium layer) |
a data frame of TreeRingPoints (radial input and correction points)
.dir <- system.file("shp",package = "TreeRingShape")
.file <- "Abies_277_h400_TreeRing_Points.shp"
filename <- paste(.dir,.file,sep="/")
sf.P<-sf::st_read(filename)
plot(sf.P)
ReadShapefile_TreeRingPoints(filename,id.tag='id',ring.tag='ring')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.