Description Usage Arguments Value Note Author(s) See Also Examples
View source: R/21-latLongPrep.R
Methods for processing tables of site location: Generate a table of latitude and longitude of site locations from either precalculated values or GPS coordinates. Generate a table of distances from an included site, using a table of latitude and longitude of site locations.
1 2 3 | hzar.map.latLongSites(siteIDs, site.lat, site.long, degrees = TRUE)
hzar.map.latLongSites.dms(siteIDs, coordinates)
hzar.map.distanceFromSite(latLongSites, site0, units = "Km")
|
siteIDs |
A character vector used to identify each site. |
site.lat |
A numeric vector of site longitudes. |
site.long |
A numeric vector of site longitudes. |
degrees |
Are |
coordinates |
A character vector the same length as |
latLongSites |
The result of either the |
site0 |
The ID string for the site place at 0. |
units |
The units of distances returned. Only the case sensitive values
|
A data.frame
:
For all methods:
site |
A character vector used to identify each site. |
For hzar.map.latLongSites
and hzar.map.latLongSites.dms
:
lat.rad |
The site latitude in radians. |
long.rad |
The site longitude in radians. |
lat.deg |
The site latitude in degrees. |
long.deg |
The site longitude in degrees. |
For hzar.map.distanceFromSite
:
distance |
The distance to each site from a common origin. |
Distances in hzar.map.distanceFromSite
are calcutated using the
method hzar.map.greatCircleDistance
.
Graham Derryberry asterion@alum.mit.edu
1 2 3 | a=hzar.map.latLongSites(c("Norway"),60.4,11)
b=hzar.map.latLongSites.dms(c("Norway","Sweden"),c("60-24 N 11 E","58 N 15 E"))
hzar.map.distanceFromSite(b,"Norway")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.