This is an automated email from the git hooks/post-receive script. dom pushed a commit to branch master in repository libgeo-coordinates-utm-perl.
commit ae99bf3bc4ed24afe6ba948d5bc2f9342e22f192 Author: Dominic Hargreaves <[email protected]> Date: Sun Feb 2 23:51:37 2014 +0000 Imported Upstream version 0.11 --- Changes | 5 ++++- META.yml | 2 +- README | 2 ++ UTM.pm | 8 +++++++- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index bb50bb1..cf2ed03 100644 --- a/Changes +++ b/Changes @@ -31,4 +31,7 @@ Revision history for Perl extension Geo::Coordinates::UTM. - fixed error in Everest Pakistan ellipsoid axis - Added Arc 1950 ellipsoid - patched MGRS calculations for S. Hemisphere - - Added MGRS tests \ No newline at end of file + - Added MGRS tests +0.11 Tue May 21 13:26:14 2013 + - Added NAD27 and NAD83 ellipsoids + \ No newline at end of file diff --git a/META.yml b/META.yml index 7eacba9..e407aa1 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Geo-Coordinates-UTM -version: 0.10 +version: 0.11 abstract: Convert LatLon to UTM and vice versa author: - Graham Crookham ([email protected]) diff --git a/README b/README index 0bcb3c6..6bae880 100644 --- a/README +++ b/README @@ -138,6 +138,8 @@ EXAMPLES 28 Everest Pakistan 29 Indonesian 1974 30 Arc 1950 + 31 NAD 27 + 32 NAD 83 ellipsoid_names diff --git a/UTM.pm b/UTM.pm index 0b5f7ae..2377090 100644 --- a/UTM.pm +++ b/UTM.pm @@ -12,7 +12,7 @@ our @EXPORT = qw( latlon_to_utm latlon_to_utm_force_zone latlon_to_mgrs mgrs_to_utm mgrs_to_latlon ellipsoid_info ellipsoid_names ); -our $VERSION = '0.10'; +our $VERSION = '0.11'; use Math::Trig; my $deg2rad = pi / 180; @@ -67,6 +67,8 @@ BEGIN { # Initialize this before other modules get a chance , [ "Everest Pakistan", 6377296, 0.006637534] , [ "Indonesian 1974", 6378160, 0.006694609] , [ "Arc 1950", 6378249.145,0.006803481] + , [ "NAD 27",6378206.4,0.006768658] + , [ "NAD 83",6378137,0.006694384] ); # calc ecc as @@ -542,6 +544,10 @@ The Ellipsoids available are as follows: =item 30 Arc 1950 +=item 30 NAD 27 + +=item 30 NAD 83 + =back -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libgeo-coordinates-utm-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
