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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
#!/usr/bin/perl
use warnings;
# test_coord.pl: Perl code to test out the Coordinate.pm
# module.
#
# Copyright (C) 2000-2012 Curt Mills, WE7U
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#
#
# TODO:
# -----
#
#------------------------------------------------------------------------------------------------
use lib "/usr/local/lib";
use Coordinate; # Snag WE7U's Coordinate module
&test();
#
# Routine for testing out the module.
#
# Need to add in tests for each method and object type.
#
sub test
{
my $to_WGS84 = 0;
my $from_WGS84 = 1;
my $position = Coordinate->new();
$position->latitude(48.125);
$position->longitude(-122.500);
$position->datum("NAD27 CONUS MEAN:W of Mississippi/Except Louisiana/Minnesota/Missouri"); # Datum
printf("Starting position(Lat, Long): %s %s\n",
$position->latitude(),
$position->longitude() );
$position->degrees_minutes_seconds(); # Convert to DD MM SS format
printf("Starting position(Lat, Long): %s %s\n",
$position->formatted_latitude(),
$position->formatted_longitude() );
$position->lat_lon_to_utm();
printf("Calculated UTM position(Easting, Northing, Zone): %f %f %s\n",
$position->easting(),
$position->northing(),
$position->zone() );
$position->utm_to_lat_lon();
printf("Calculated Lat, Long position(Lat, Long): %f %f\n",
$position->latitude(),
$position->longitude() );
print "Changing from NAD27 to WGS84 datum...\n";
$position = $position->datum_shift_to_wgs84();
printf("Calculated Lat, Long position(Lat, Long): %f %f\n",
$position->latitude(),
$position->longitude() );
$position->degrees_minutes_seconds(); # Convert to DD MM SS
printf("Calculated Lat, Long position(Lat, Long): %s %s\n",
$position->formatted_latitude(),
$position->formatted_longitude() );
print "Changing from WGS84 to NAD27 datum...\n";
$position = $position->datum_shift_from_wgs84_to( "NAD27 CONUS MEAN:W of Mississippi/Except Louisiana/Minnesota/Missouri" );
printf("Calculated Lat, Long position(Lat, Long): %f %f\n",
$position->latitude(),
$position->longitude() );
print "\n0\n";
my $temp = CoordinateFormat->new( "0" );
printf(" decimal_degrees: %s\n", $temp->decimal_degrees( ) );
printf(" degrees_minutes: %s\n", $temp->degrees_minutes( ) );
printf("degrees_minutes_seconds: %s\n\n", $temp->degrees_minutes_seconds() );
print "180\n";
$temp->raw( "180" );
printf(" decimal_degrees: %s\n", $temp->decimal_degrees( "180") );
printf(" degrees_minutes: %s\n", $temp->degrees_minutes( "180") );
printf("degrees_minutes_seconds: %s\n\n", $temp->degrees_minutes_seconds("180") );
print "180 30\n";
$temp->raw( "180 30" );
printf(" decimal_degrees: %s\n", $temp->decimal_degrees( "180 30") );
printf(" degrees_minutes: %s\n", $temp->degrees_minutes( "180 30") );
printf("degrees_minutes_seconds: %s\n\n", $temp->degrees_minutes_seconds("180 30") );
print "180.50\n";
$temp->raw( "180.50" );
printf(" decimal_degrees: %s\n", $temp->decimal_degrees( "180.50") );
printf(" degrees_minutes: %s\n", $temp->degrees_minutes( "180.50") );
printf("degrees_minutes_seconds: %s\n\n", $temp->degrees_minutes_seconds("180.50") );
$temp->raw( "180 30.50" );
print "180 30.50\n";
printf(" decimal_degrees: %s\n", $temp->decimal_degrees( "180 30.50") );
printf(" degrees_minutes: %s\n", $temp->degrees_minutes( "180 30.50") );
printf("degrees_minutes_seconds: %s\n\n", $temp->degrees_minutes_seconds("180 30.50") );
$temp->raw( "180 30 30" );
print "180 30 30\n";
printf(" decimal_degrees: %s\n", $temp->decimal_degrees( "180 30 30") );
printf(" degrees_minutes: %s\n", $temp->degrees_minutes( "180 30 30") );
printf("degrees_minutes_seconds: %s\n\n", $temp->degrees_minutes_seconds("180 30 30") );
$temp->raw( "180 30 30.5" );
print "180 30 30.5\n";
printf(" decimal_degrees: %s\n", $temp->decimal_degrees("180 30 30.5") );
printf(" degrees_minutes: %s\n", $temp->degrees_minutes("180 30 30.5") );
printf("degrees_minutes_seconds: %s\n\n", $temp->degrees_minutes_seconds("180 30 30.5") );
$temp->raw( "-180 30 30.5" );
print "-180 30 30.5\n";
printf(" decimal_degrees: %s\n", $temp->decimal_degrees("-180 30 30.5") );
printf(" degrees_minutes: %s\n", $temp->degrees_minutes("-180 30 30.5") );
printf("degrees_minutes_seconds: %s\n\n", $temp->degrees_minutes_seconds("-180 30 30.5") );
EllipsoidTable->enumerate();
DatumTable->enumerate();
}
|