clarisma / geodesk

Fast and storage-efficient spatial database engine for OpenStreetMap data
https://docs.geodesk.com/java
Apache License 2.0
137 stars 4 forks source link

Enable querying relation members by role #3

Open clarisma opened 2 years ago

clarisma commented 2 years ago

Support querying relation members by role, e.g.

relation.members("w[role=main_stream]")

This would be more efficient than checking member.role() programmatically, since we wouldn't need to de-reference features whose role doesn't match (possibly avoiding a tile download).

Need to address the following:

clarisma commented 1 year ago