| Geo-WebService-OpenCellID documentation | Contained in the Geo-WebService-OpenCellID distribution. |
Geo::WebService::OpenCellID::Response::cell::get - Perl API for the opencellid.org database
Perl Interface to the database at http://www.opencellid.org/
Submit to RT and email the Author
Try the Author or Try 8motions.com
Michael R. Davis
CPAN ID: MRDVT
STOP, LLC
domain=>michaelrdavis,tld=>com,account=>perl
http://www.stopllc.com/
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| Geo-WebService-OpenCellID documentation | Contained in the Geo-WebService-OpenCellID distribution. |
package Geo::WebService::OpenCellID::Response::cell::get; use warnings; use strict; use base qw{Geo::WebService::OpenCellID::Response::cell}; our $VERSION = '0.03';
sub lat { my $self=shift; return $self->{"data"}->{"cell"}->[0]->{"lat"}; }
sub lon { my $self=shift; return $self->{"data"}->{"cell"}->[0]->{"lon"}; }
sub range { my $self=shift; return $self->{"data"}->{"cell"}->[0]->{"range"}; }
sub nbSamples { my $self=shift; return $self->{"data"}->{"cell"}->[0]->{"nbSamples"}; }
1;