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
In some cases when when we ask in queries.yaml to drop_properties and include the all_name_variants config, we still see alt_name variants.
all_name_variants
alt_name
The transform we use is:
vector-datasource/vectordatasource/transform.py
Lines 161 to 180 in f7994f6
# then any of the alternative forms of name return any(key.startswith(p) for p in tag_name_alternates)
Which uses a list of alternate name tags:
Lines 497 to 508 in f7994f6
So the action to take is to expand the list to include alt_name.
The text was updated successfully, but these errors were encountered:
Build a test using https://www.openstreetmap.org/relation/3987743.
Sorry, something went wrong.
No branches or pull requests
In some cases when when we ask in queries.yaml to drop_properties and include the
all_name_variants
config, we still seealt_name
variants.The transform we use is:
vector-datasource/vectordatasource/transform.py
Lines 161 to 180 in f7994f6
Which uses a list of alternate name tags:
vector-datasource/vectordatasource/transform.py
Lines 497 to 508 in f7994f6
So the action to take is to expand the list to include
alt_name
.The text was updated successfully, but these errors were encountered: