1NAME
2
3    PDL::Transform::Proj
4
5DESCRIPTION
6
7    This is a port of the Proj library to PDL.
8
9COPYRIGHT NOTICE
10
11    Copyright 2003 Judd Taylor, USF Institute for Marine Remote Sensing (judd@marine.usf.edu).
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
17    I'm making it GPL now, so I should probably update the above notice!
18
19PREREQUISITES
20
21    Proj4 C library (tested with 4.4.5)
22    Perl            (tested with 5.8.0)
23    PDL             (tested with 2.3.4 with BadVals)
24
25BUILD INSTRUCTIONS
26
27    1. Install the Proj4 library if you haven't already.
28
29    2. Edit the Makefile.PL to point the $proj4_include_path and $proj4_lib_path variables
30        to your installation of the Proj4 library.
31
32    3. Make the makefiles with the command:
33        shell> perl Makefile.PL
34
35    4. Build the software with the command:
36        shell> make
37
38    5. Install the software with the command:
39        shell> make install
40
41    6. Test the software (option) using the included script test_proj4.pl.
42        NOTE: There are no regression tests yet, but if something is wrong with the install,
43        it will probably break the test script.
44
45USAGE
46
47    See the POD in the lib itself, and check out the test script.
48
49CHANGES
50
51    1.0: Inital version
52
53
54