omniscale / imposm3

Imposm imports OpenStreetMap data into PostGIS
http://imposm.org/docs/imposm3/latest/
Apache License 2.0
723 stars 158 forks source link

hstore_tags include by mask #281

Closed alx77 closed 2 years ago

alx77 commented 2 years ago

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 2 years ago

as I know ( with the current release )

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 2 years ago

I see, thank you.