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
Hi,
French addresses don't work when using the search feature with abbreviations.
For example:
boulevard saint-martin works
bd saint-martin doesn't work
boulevard saint martin doesn't work either
Ideally, we would like to find the address with the input bd st martin.
I see two problems here:
The synonyms in custom_street.txt don't work because the peliasStreetTokenizer doesn't split on whitespace. But I see you are fixing this in Portland synonyms #291
saint martin doesn't match saint-martin because of the hyphen. This can be solved by adding - to the name and street tokenizer.
Libpostal sometimes parses martin as the neighbourhood or the city instead of the street. But that is another issue.
A more complete list of localized synonyms is also needed but that is less a problem because we can just add our own in our local install of pelias.
Hi,
French addresses don't work when using the search feature with abbreviations.
For example:
boulevard saint-martinworksbd saint-martindoesn't workboulevard saint martindoesn't work eitherIdeally, we would like to find the address with the input
bd st martin.I see two problems here:
custom_street.txtdon't work because thepeliasStreetTokenizerdoesn't split on whitespace. But I see you are fixing this in Portland synonyms #291saint martindoesn't matchsaint-martinbecause of the hyphen. This can be solved by adding-to the name and street tokenizer.A more complete list of localized synonyms is also needed but that is less a problem because we can just add our own in our local install of pelias.
What do you think ?