Astro::SkyPlot is a Perl module to create very basic sky plots as EPS documents.
SYNOPSIS
use Astro::SkyPlot qw/:all/; # export the markers
my $plot = Astro::SkyPlot->new(); # use defaults (see below)
# specify options yourself:
$plot = Astro::SkyPlot->new(
xsize => 200, # mm
ysize => 200,
bgcolor => [0, 0, 0], # RGB => black
projection => 'hammer',
axiscolor => [100, 100, 100], # RGB => grey
);
$plot->setcolor(255, 0, 0); # RGB => red
$plot->plot_lat_long(1, 1); # units: radians
$plot->plot_lat_long(1, 1, size => 0.2, marker => MARK_CIRCLE); # units: radians, radians, mm
$plot->write(file => "skyplot.eps");
Product's homepage
Requirements:
· Perl