View source: R/SpatialCircle.r
SpatialCircle | R Documentation |
Returns a SpatialLines object, that defines a circle of radius r around a specified point.
SpatialCircle(x,y,r,n=100,proj4str)
x, y |
x and y coordinates of the circle |
r |
radius (of the same scale as plotting window) |
n |
precision indicator of the circle. |
proj4str |
projection string. |
Robert K. Bauer
get.avg.bathy
## 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.