hstore_tags include by mask
alx77 opened this issue · 2 comments
alx77 commented
Hello, is there any way to pick up only name tags, like this
- type: hstore_tags
name: names
include: ["name:*"]
key:
I tried with/without load_all
- doesn't work. Excluding is very cumbersome because there are various tags inside.
ImreSamu commented
as I know ( with the current release )
- in the doc: """ ...
include
does not support pattern matching and it has no effect whenload_all
is used._ """
Imho: you have to find some workarounds; for example you have to list all-important osm keys.
tags:
include:
- name
- name:am
- name:ar
- name:az
- name:be
...
- name:th
- name:tr
- name:uk
- name:zh
alx77 commented
I see, thank you.