Description Usage Arguments Details Value Author(s) See Also Examples
A helper function to convert a minimum spanning tree or network into shapefile format.
1 |
msn |
a minimum spanning tree or network (binary matrix) |
lats |
a matrix or data frame with the latitude and longitude of the sites as the first two columns respectively |
dist |
Optional argument to include distance values in final output; if wanted, a distance matrix (lower triangle) with the localities in the same order as in the MSN are required |
This function will take a minimum spanning tree or network object, along with
the georeferenced locations of the sites, and convert it into a shapefile for
use with GIS. The msn
argument requires a minimu spanning tree or
network object, and the lat argument requires some form of location for each
of the points, typically a matrix with latitude and longitude columns
respectively.
A shapefile which can be output using the write.shapefile
function for
use with a GIS program.
Matthew Vavrek
lats2Shape
for a function to convert a lat/long table to
a shapefile
1 2 3 4 5 6 7 8 9 10 | ## Not run:
#import both fdata.lats and fdata.mat
data(fdata.lats)
data(fdata.mat)
fdata.dist<-dino.dist(fdata.mat)
fdata.mst<-dino.mst(fdata.dist)
shape.mst<-msn2Shape(fdata.mst, fdata.lats)
write.shapefile(shape.mst, file='/path/to/write/mst')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.