Skip to content
New issue

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

Wrong street name determination when street name contains a number #40

Open
killoff opened this issue Feb 9, 2024 · 0 comments
Open

Comments

@killoff
Copy link

killoff commented Feb 9, 2024

There are some streets that have number in the name.
It's usually happens when some street is devoted to some history event in the past.

For example, some address in Geneve, Switzerland:
Rue du 31 Décembre 26, 1207 Genève

The result:

  "additionToAddress1" => ""
  "streetName" => "Rue du"
  "houseNumber" => "31"
  "houseNumberParts" => array:2 [
    "base" => "31"
    "extension" => ""
  ]
  "additionToAddress2" => "Décembre 26"

But expected is

  "additionToAddress1" => ""
  "streetName" => "Rue du 31 Décembre"
  "houseNumber" => "26"
  "houseNumberParts" => array:2 [
    "base" => "26"
    "extension" => ""
  ]
  "additionToAddress2" => ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant