class MaxMind::GeoIP2::Record::City

City-level data associated with an IP address.

This record is returned by all location services and databases besides Country.

See {MaxMind::GeoIP2::Record::Place} for inherited methods.

Public Instance Methods

confidence() click to toggle source

A value from 0-100 indicating MaxMind's confidence that the city is correct. This attribute is only available from the Insights service and the GeoIP2 Enterprise database.

@return [Integer, nil]

# File lib/maxmind/geoip2/record/city.rb, line 40
def confidence
  get('confidence')
end
geoname_id() click to toggle source

The GeoName ID for the city. This attribute is returned by all location services and databases.

@return [Integer, nil]

# File lib/maxmind/geoip2/record/city.rb, line 48
def geoname_id
  get('geoname_id')
end
names() click to toggle source

A Hash where the keys are locale codes and the values are names. This attribute is returned by all location services and databases.

@return [Hash<String, String>, nil]

# File lib/maxmind/geoip2/record/city.rb, line 56
def names
  get('names')
end