Description Usage Arguments Value Examples
Import spatstat
1 |
lat |
Numeric. Latitudes of points. |
long |
Numeric. Longitude of points. |
domain |
Domain where the points occur. Object of class
|
... |
Arguments passed to |
check |
Logical. Check that points actually are inside the provided
|
Object of class "spp"
.
1 2 3 4 5 6 7 8 9 10 11 | dom <- sphere(coord_type = "polar")
lat <- pi * c(1/4, 1/2, 3/4)
long <- 2 * pi * c(1/4, 1/2, 3/4)
X <- spp(lat, long, domain = dom)
X <- spp(lat, long, coord_type = "polar")
lat <- c(45, 0, -45)
long <- c(90, 180, -90)
X <- spp(lat, long)
dom <- sphere(coord_type = "geo_deg")
X <- spp(lat, long, domain = dom)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.