-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
46 lines (32 loc) · 1.05 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
PDL::IO::NDF
------------
This module allows Starlink NDF files (http://www.starlink.ac.uk)
to be written and read from the Perl Data Language. All numerical
array components are read as PDLs.
The PDL home page can be found at http://pdl.perl.org/
use PDL::IO::NDF;
$a = rndf("test.sdf");
$a->wndf("output.sdf");
Requirements:
------------
Requires the following modules from CPAN
PDL
Astro::FITS::Header
PDL 2.040 or newer is required.
You will also need the NDF module available from
git://github.com/Starlink/perl-NDF.git and the NDF library
from a Starlink distribution (http://www.starlink.ac.uk).
Installation
------------
To install this package independently of the main package type:
perl Build.PL
./Build
./Build test
./Build install
Authors
-------
Tim Jenness <[email protected]> and Douglas Burke <[email protected]>.
Currently maintained by Tim Jenness.
Copyright (C) 1998 - 2012 Tim Jenness. All Rights Reserved. This program is free
software; you can redistribute it and/or modify it under the same
terms as Perl itself.