AddressTokens
Gem to find tokens on address strings. Can identify address, city and state name and abbreviation.
Installation
Add this line to your application's Gemfile:
gem 'address_tokens'
And then execute:
$ bundle
Or install it yourself as:
$ gem install address_tokens
Usage
Always hated when you get some address like
88 Colin P Kelly Jr St San Francisco, CA 94107
and don't know where is the address, where is the state, where is the city name?
Ok, me too. So I made this class.
We need state and city data to find out what the tokens are. To load the date, we'll need YAML files like I have on this repo. They follow formats like these:
# states.yml:
---
CA: California
# cities.yml
CA:
- San Francisco
Finding by exact match is fast and piece of cake. The problem is where we have some different ways to write or abbreviate the city names like we have here on Brazil. For example, my city, São José do Rio Preto, can have some forms:
- São José do Rio Preto
- São José Rio Preto
- S. J. do Rio Preto
- S. J. R. Preto
And keep going. But I think I could find some ways to find that.
Finding stuff
First, we create a Finder object:
finder = AddressTokens::Finder.new('88 Colin P Kelly Jr St San Francisco, CA 94107')
Load the cities and states:
finder.load(:states, '/tmp/states.yml')
finder.load(:cities, '/tmp/cities.yml')
And ask to find:
matches = finder.find
We'll get something like this:
{
:state_abbr => "CA",
:state_name => "California",
:state_start_at => 36,
:city_name => "San Francisco",
:city_string => "San Francisco",
:city_start_at => 23,
:address => "88 Colin P Kelly Jr St",
:zipcode => "94107",
:zipcode_string => "94107"
}
The start_at
values shows where the strings were found. The *_string
methods
shows the way the strings were originally found.
We can use the find
method with an already instance of the Finder
object
sending a string to it:
finder.find('my other string New York, Ny')
Custom options
As we saw, the default city and states separator on USA is a comma (','), but on Brasil is a hyphen ('-'), so, before asking to find the address, we must change it. The zipcode format is also different:
finder.state_separator = '-'
finder.zip_format = AddressTokens::Zip::BR
Using a Brazilian address:
finder = AddressTokens::Finder.new('Rua Tratado de Tordesihas, 88, Pq. Estoril, 15085-110 S. J. do Rio Preto - SP')
finder.state_separator = '-'
finder.load(:states, '/tmp/states.yml')
finder.load(:cities, '/tmp/cities.yml')
finder.find
will return:
{
:state_abbr => "SP",
:state_name => "São Paulo",
:state_start_at => 63,
:city_name => "São José do Rio Preto",
:city_string => "S. J. do Rio Preto",
:city_start_at => 44,
:address => "Rua Tratado de Tordesihas, 88, Pq. Estoril,",
:zipcode => "15085-110",
:zipcode_string => "15085-110"
}
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run
rake test
to run the tests. You can also run bin/console
for an interactive
prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To
release a new version, update the version number in version.rb
, and then run
bundle exec rake release
, which will create a git tag for the version, push
git commits and tags, and push the .gem
file to
rubygems.org.
Testing
You can find some states and cities to run the tests here:
- https://github.com/taq/brstatescities/raw/master/states.yml
- https://github.com/taq/brstatescities/raw/master/cities.yml
Please insert CA: California
on states.yml
and San Franscisco
on
cities.yml
to run the tests, using:
$ rake test
.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/taq/address_tokens.