Skip Menu |

This queue is for tickets about the Geo-Proj4 CPAN distribution.

Report information
The Basics
Id: 74774
Status: resolved
Priority: 0/
Queue: Geo-Proj4

People
Owner: Nobody in particular
Requestors: HEIKOK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in:
  • 1.01
  • 1.02
Fixed in: (no value)



Subject: call to 'projection' returns only undef or 'w'
Hi, the Geo::Proj4 sub projection returns not the expected due to a forgotten \ int the regexp before \w+: sub projection() { my $norm = shift->normalized; $norm =~ m/\+proj\=(w+)/ ? $1 : undef; } It should be: $norm =~ m/\+proj\=(\w+)/ ? $1 : undef; Regards, Heiko
Subject: Re: [rt.cpan.org #74774] call to 'projection' returns only undef or 'w'
Date: Wed, 8 Feb 2012 20:06:52 +0100
To: HEIKOK via RT <bug-Geo-Proj4 [...] rt.cpan.org>
From: Mark Overmeer <secretaris [...] nluug.nl>
* HEIKOK via RT (bug-Geo-Proj4@rt.cpan.org) [120208 10:29]: Show quoted text
> Wed Feb 08 05:29:47 2012: Request 74774 was acted upon. > Transaction: Ticket created by HEIKOK > Queue: Geo-Proj4 > Subject: call to 'projection' returns only undef or 'w' > Broken in: 1.01, 1.02 > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=74774 > > > the Geo::Proj4 sub projection returns not the expected due to a > forgotten \ int the regexp before \w+: > - $norm =~ m/\+proj\=(w+)/ ? $1 : undef; > + $norm =~ m/\+proj\=(\w+)/ ? $1 : undef;
Thanks, released as 1.03 -- Regards, MarkOv ------------------------------------------------------------------------ Mark Overmeer MSc MARKOV Solutions Mark@Overmeer.net solutions@overmeer.net http://Mark.Overmeer.net http://solutions.overmeer.net
fixed in 1.03