GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
GeoIP2::Record::Location(3) User Contributed Perl Documentation GeoIP2::Record::Location(3)

GeoIP2::Record::Location - Contains data for the location record associated with an IP address

version 2.006002

  use 5.008;

  use GeoIP2::WebService::Client;

  my $client = GeoIP2::WebService::Client->new(
      account_id  => 42,
      license_key => 'abcdef123456',
  );

  my $insights = $client->insights( ip => '24.24.24.24' );

  my $location_rec = $insights->location();
  print $location_rec->name(), "\n";

This class contains the location data associated with an IP address.

This record is returned by all the end points except the Country end point.

This class provides the following methods:

The approximate accuracy radius in kilometers around the latitude and longitude for the IP address. This is the radius where we have a 67% confidence that the device using the IP address resides within the circle centered at the latitude and longitude with the provided radius.

This attribute is returned by all end points and location databases except Country.

This returns a non-negative integer representing the average income in US dollars associated with the requested IP address.

This attribute is only available from the Insights end point and the GeoIP2 Enterprise database.

The approximate latitude of the location associated with the IP address. This value is not precise and should not be used to identify a particular address or household.

This attribute is returned by all end points and location databases except Country.

The approximate longitude of the location associated with the IP address. This value is not precise and should not be used to identify a particular address or household.

This attribute is returned by all end points and location databases except Country.

This returns the metro code of the location if the location is in the US. MaxMind returns the same metro codes as the Google AdWords API (<https://developers.google.com/adwords/api/docs/appendix/cities-DMAregions>).

This attribute is returned by all end points except the Country end point.

Returns a non-negative integer representing the estimated population per square kilometer associated with the requested IP address.

This attribute is only available from the Insights end point and the GeoIP2 Enterprise database.

This returns the time zone associated with a location, as specified by the IANA Time Zone Database (<http://www.iana.org/time-zones>), e.g., "America/New_York".

This attribute is returned by all end points except the Country end point.

Bugs may be submitted through <https://github.com/maxmind/GeoIP2-perl/issues>.

  • Dave Rolsky <drolsky@maxmind.com>
  • Greg Oschwald <goschwald@maxmind.com>
  • Mark Fowler <mfowler@maxmind.com>
  • Olaf Alders <oalders@maxmind.com>

This software is copyright (c) 2013 - 2019 by MaxMind, Inc.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2019-06-18 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.