The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Geo::Coder::Abbreviations - Quick and Dirty Interface to https://github.com/mapbox/geocoder-abbreviations

VERSION

Version 0.07

SYNOPSIS

Provides an interface to https://github.com/mapbox/geocoder-abbreviations. One small function for now, I'll add others later.

SUBROUTINES/METHODS

new

Creates a Geo::Coder::Abbreviations object. It takes no arguments. If you have HTTP::Cache::Transparent installed it will load much faster, otherwise it will download the database from the Internet when the class is first instantiated.

abbreviate

Abbreviate a place.

    use Geo::Coder::Abbreviations;

    my $abbr = Geo::Coder::Abbreviations->new();
    print $abbr->abbreviate('Road'), "\n";      # prints 'RD'
    print $abbr->abbreviate('RD'), "\n";        # prints 'RD'

normalize

Normalize and abbreviate street names - useful for comparisons

SEE ALSO

https://github.com/mapbox/geocoder-abbreviations HTTP::Cache::Transparent https://www.mapbox.com/

AUTHOR

Nigel Horne, <njh at bandsman.co.uk>

BUGS

You may need to ensure you don't translate "Cross Street" to "X ST". See t/abbreviations.t.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Geo::Coder::Abbreviations

You can also look for information at:

ACKNOWLEDGMENTS

LICENSE AND COPYRIGHT

Copyright 2020-2024 Nigel Horne.

This program is released under the following licence: GPL2