geom_point {rsgeo}R Documentation

Construct Geometries

Description

Constructs geometries from numeric vectors.

Usage

geom_point(x, y)

geom_multipoint(x, y, id = 1)

geom_linestring(x, y, id = 1)

geom_polygon(x, y, id = 1, ring = 1)

Arguments

x

a vector of x coordinates

y

a vector of y coordinates

id

the feature identifier

ring

the id of the polygon ring

Value

an object of class rsgeo

Examples

geom_point(3, 0.14)
geom_multipoint(1:10, 10:1)
geom_linestring(1:10, 10:1)
geom_polygon(c(0, 1, 1, 0, 0), c(0, 0, 1, 1, 0))

[Package rsgeo version 0.1.6 Index]