Hi!
I am reading OSM data in the .osm format and trying to write out selected key-value pairs based on the key name.
The key value pairs are in two lists: tag().k and tag(),v. I would like to extract all the keys which equal "name" from tag().k and write the associated values from tag().v to a name attribute.
I am having difficulty figuring out the best (or any) way to do this. I would like to accomplish this task just using the existing transformers if possible.
Thank you!