We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
No branches or pull requests
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: