The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
ggsky is an extension for ggplot2 to draw
sky maps with:
coord_galactic())coord_equatorial())It includes custom coordinate systems and helper scales for longitude/latitude labels.
From GitHub:
remotes::install_github("uskovgs/ggsky") library(ggplot2)
library(ggsky)
N <- 100
df1 <- data.frame(
x = runif(N, 0, 360),
y = runif(N, -90, 90)
)
ggplot(df1, aes(x, y)) +
geom_point() +
coord_galactic() +
labs(title = "Galactic coordinate system")
ggplot(df1, aes(x, y)) +
geom_point() +
labs(title = "Equatorial coordinate system") +
coord_equatorial()These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.