ppoints {autoimage} | R Documentation |
Projected points function
Description
ppoints
draws a sequence of points for projected
coordinates.
Usage
ppoints(x, y = NULL, type = "p", proj, ...)
Arguments
x |
coordinate vectors of points to plot. |
y |
coordinate vectors of points to plot. |
type |
character indicating the type of plotting; actually any of
the |
proj |
A character string indicating what projection should be
used for the included |
... |
Further graphical parameters passed to the
|
Details
The mapproject
function is used for
projection.
See Also
Examples
data(narccap)
# plot image using bonne projection (w/o grid lines)
pimage(lon, lat, tasmax[,,1], proj = "bonne",
parameters = 40, paxes.args = list(grid = FALSE))
# get U.S. cities with population of about 40k or more
data(us.cities, package = "maps")
# add cities to existing plot
ppoints(us.cities$long, us.cities$lat, proj = "bonne")
[Package autoimage version 2.2.3 Index]