Replies: 1 comment 2 replies
-
Is this in the openmaptiles profile or a custom one? There's no automated way to override OSM data prior to processing it, but if you're working in code you could do something like this: var feature = features.point("place")
...
if (element.source() instanceof OsmSourceFeature source && source.originalElement().id() == 313753808L) {
feature.setAttr("place", "country");
} Might be a nice capability to be to be able to process a osm pbf plus a changeset xml file with overrides/removals/extra features? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What is the best way to modify a tag value of a given OSM node after reading the source pbf?
I want to for example change
place=state
toplace=country
in the node of French Guyana https://www.openstreetmap.org/node/313753808.Beta Was this translation helpful? Give feedback.
All reactions