Usage
createAllSkyScatterPlotChart(x, y, pointcol = rgb(0, 0, 0, 0.5), pointsize = 0.5,
dataCoordSys = "equatorial", mainGrid = "equatorial", eqCol = "red", eclCol = "blue",
galCol = "green", eqLty = 1, eclLty = 2, galLty = 3, eqLwd = 1, eclLwd = 1, galLwd = 1,
eqDraw = TRUE, eclDraw = TRUE, galDraq = TRUE, projname = "aitoff", projparam = NULL,
projorient = NULL, nGridpoints = 100, addLab=TRUE, label.cex=0.6,
main = paste("All-Sky Scatter Plot (", projname, ")", sep = ""), ...)
Arguments
x
A vector with the data in degrees for the first coordinate (Right Ascention, for data in the Equatorial system, Ecliptic Longitude for the Ecliptic system or Galactic Longitude for the Galactic System).
y
A vector with the data in degrees for the second coordinate (Declination, for data in the Equatorial system, Ecliptic Latitude for the Ecliptic system or Galactic Latitude for the Galactic System).
pointcol
A scalar or a vector with, the same size of the x and y vectors, containing the color of the points.
pointsize
A scalar or a vector with, the same size of the x and y vectors, containing the sizes of the points.
dataCoordSys
String. The name of the coordinate system of the x and y vector. It can take the following values: "equatorial", "ecliptic" or "galactic". It defaults to "equatorial".
mainGrid
String. The name of the the main coordinate system of the plot. It can take the following values: "equatorial", "ecliptic" or "galactic". It defaults to "equatorial".
eqCol
String. The color of the Equatorial coordinate system lines.
eclCol
String. The color of the Ecliptic coordinate system lines.
galCol
String. The color of the Galactic coordinate system lines.
eqLty
Numeric. The line type of the Equatorial coordinate system lines.
eclLty
Numeric. The line type of the Ecliptic coordinate system lines.
galLty
Numeric. The line type of the Galactic coordinate system lines.
eqLwd
Numeric. The line width of the Equatorial coordinate system lines.
eclLwd
Numeric. The line width of the Ecliptic coordinate system lines.
galLwd
Numeric. The line width of the Galactic coordinate system lines.
eqDraw
Logical. A boolean to indicate if the Equatorial coordinate system lines should be draw.
eclDraw
Logical. A boolean to indicate if the Ecliptic coordinate system lines should be draw.
galDraq
Logical. A boolean to indicate if the Galactic coordinate system lines should be draw.
projname
String. The spherical projection of the plot. It can take as argument any projection supported by the mapproj package, but only "aitoff", "mollweide" and "mercator" are tested automatically. It defaults to "aitoff".
projparam
Parameters to configure the projection. It defaults to NULL.
projorient
The orientation of the projection. It defaults to NULL.
nGridpoints
Numeric. The number of points used to draw each grid line. Defaults to 50.
addLab
Logical. A boolean to indicate if the labels should be added.
label.cex
Numeric. The size of the labels.
main
String. The main title of the plot.
…
Additional parameters to be passed to points
.