Skip to contents

Adds equal-area or equal-angle projection gridlines to an existing stereoplot.

Usage

stereoplot_guides(d = 10, earea = TRUE, radius = 1, ...)

Arguments

d

angle between grid lines

earea

logical. Projection, either TRUE for Lambert equal-area projection (the default), or FALSE for meridional stereographic projection.

radius

numeric. Radius of circle

...

optional arguments passed to graphics::lines()

Examples

plot(c(-1, 1), c(-1, 1), type = "n", asp = 1)
stereoplot_guides(d = 5, earea = FALSE, col = "green", rotation = 20)


plot(c(-1, 1), c(-1, 1), type = "n", asp = 1)
stereoplot_guides(d = 15, earea = TRUE, col = "orange", rotation = 90)