Help for this page

Select Code to Download


  1. or download this
    !/usr/bin/perl
    use strict;
    use warnings;
    use lib 'lib';
    use Geo;
    
  2. or download this
    use autodie;
    use DBD::SQLite;
    ...
    45,-93
    48,-104
    40,-85
    
  3. or download this
    package Geo;
    
    sub find_near_counties {
    
  4. or download this
            my (  $dbh, $lat, $long, $range ) = @_;
    
    ...
    }
    1;