View source: R/get.avg.bathy.r
get.avg.bathy | R Documentation |
returns the average value of circles with specified coordinates and a defined radius
get.avg.bathy(x, radius, unit="km", raster, bathy, v_area="medw4")
get.avg(x, radius, unit="km", raster)
x |
a vector or matrix providing the coordinates of the circle |
radius |
the radius (if |
unit |
unit of the radius (by default "km").
if |
raster |
raster object, from which the average should be calculated. |
bathy |
raster object with bathymetry data, from which the average should be calculated. |
v_area |
character string identifying the region for which the bathymetry data should downloaded from the NOAA server. |
Robert K. Bauer
SpatialCircle
## Example 1: load & plot bathymetry of the Baltic Sea, defined by longitudes and latidtues
lon <- c(9, 31)
lat <- c(53.5, 66)
# bathy <- get.bathy(lon=lon, lat=lat, main="Baltic Sea", cbpos='r')
plotmap(lon=lon, lat=lat)
spc <- SpatialCircle(x= 20,y = 57.5,r=1)
plot(spc,add=TRUE)
# get.avg.bathy(c(20,57.5), radius = 1, bathy = bathy)
# get.avg(c(20,57.5), radius = 1, unit="km",raster = bathy)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.