File Coverage

File:blib/lib/Geo/Coder/Free/DB/MaxMind/admin1.pm
Coverage:100.0%

linestmtbrancondsubpodtimecode
1package Geo::Coder::Free::DB::MaxMind::admin1;
2
3
16
16
16
64451
18
180
use strict;
4
16
16
16
24
15
343
use warnings;
5
16
16
16
207
5929
42
use autodie qw(:all);
6
7 - 15
=head1 NAME

Geo::Coder::Free::DB::MaxMind::admin1 - driver for http://download.geonames.org/export/dump/admin1CodesASCII.txt

=head1 VERSION

Version 0.42

=cut
16
17our $VERSION = '0.43';
18
19# It contains admin areas such as counties, states and provinces
20# Note that GB has England, Scotland and Wales at this level, not the counties
21# A typical line is:
22#       US.MD   Maryland        Maryland        4361885
23# So a look up of 'Maryland' will get the code 'US.MD'
24
25
16
16
16
40372
16
67
use parent -norequire, 'Geo::Coder::Free::DB::MaxMind::admin';
26
16
16
16
2806
31
53
use Geo::Coder::Free::DB::MaxMind::admin;
27
281;