Error parsing La in city name (i.e. La Quinta) as Louisiana using .tag · Issue #358 · datamade/usaddress · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've had some addresses work fine such as...
"49000 Calle Flora, La Quinta, CA 92253 United States"
(OrderedDict([('AddressNumber', '49000'), ('StreetName', 'Calle Flora'), ('PlaceName', 'La Quinta'), ('StateName', 'CA'), ('ZipCode', '92253'), ('CountryName', 'United States')]), 'Street Address')
whereas "8100 Peary Place, La Quinta, California 92253 United States" results in...
ERROR: Unable to tag this string because more than one area of the string has the same label
ORIGINAL STRING: 8100 Peary Place, La Quinta, California 92253 United States
PARSED TOKENS: [('8100', 'AddressNumber'), ('Peary', 'StreetName'), ('Place,', 'StreetNamePostType'), ('La', 'StateName'), ('Quinta,', 'PlaceName'), ('California', 'StateName'), ('92253', 'ZipCode'), ('United', 'CountryName'), ('States', 'CountryName')]
UNCERTAIN LABEL: StateName
After testing, it seems having a street address end in 'Place' trips up the parser.
The text was updated successfully, but these errors were encountered: