plotAzimuth {skyscapeR} | R Documentation |
Polar plot of orientations (azimuths)
Description
Polar plot of orientations (azimuths)
Usage
plotAzimuth(az, col = "blue", lwd = 1.5, lty = 1, obj, show.obj.labels = T)
Arguments
az |
(Optional) Array of azimuths. Can be omitted is obj is given. |
col |
(Optional) Single color or color palette to use for plotting measurements. |
lwd |
(Optional) Line width to plot measurements. Defaults to 1. |
lty |
(Optional) Line type to plot measurements. Defaults to 1. |
obj |
(Optional) A skyscapeR.object object created with |
show.obj.labels |
(Optional) Boolean to control whether to display celestial objects names. Defaults to TRUE. |
Examples
# Plot some azimuth data:
az <- c(120, 100, 93, 97, 88, 115, 112, 67)
plotAzimuth(az)
# To visualize this data against the common solar and lunar targets:
tt <- sky.objects('solar extremes', epoch=-2000, loc=c(35,-8), col='red')
plotAzimuth(az, obj=tt)
# To display only celestial objects
plotAzimuth(obj=tt)
[Package skyscapeR version 1.0.0 Index]