I'm hoping to create a map that is in Tlingit, the language of the people who first occupied my local area (see this site). Some features have a name:tli tag. Area in question How could I query the features that have that tag? I tried [name:tli is NOT NULL] and it didn't work. asked 05 Feb '20, 01:16 Jfact0ry edited 05 Feb '20, 01:17 |
One Answer:
To query for a key without considering the values, put the key in the brackets, here using quotes because of the colon in the key: There aren't many features with that tag: answered 05 Feb '20, 02:17 maxerickson |
Thank you! Yes, the goal is to show it's possible and then get more of the landmarks in local language mapped. Gunalchéesh!
@Jfact0ry You can use for example
node[place][!"lang:tli"]({{bbox}});
to query forplace=*
features without a name your language, using the!
not operator. Be careful not to make the box too wide in area to avoid over-limit.