Hey folks, trying to apply a changefile on an .OSM extract I get the following problem:
I am using the following command to update my OSM file:
My question is somehow a duplicate of this question, where the author is able to solve his problem, but I can't figure it out to do the same. As I am not convenient in using the console commands for osmosis, I would greatly appreciate if anyone could correct my code to include the simc task and the sorting of he changefile. asked 09 Nov '14, 17:06 kartenmalergidi |
OK, after some trying, failing and trying again, I figured it out. I ended up with the following command that is working:
The --simc task simplifies the .OSC file. "For example, if an entity is created and modified in a single change file, this task will modify it to be a single create operation with the data of the modify operation." Osmosis - Detailed Usage. The --sc task sorts the .OSC file in a way that all created nodes, ways, and relations are sorted in one <create>, <modify> or <delete> tag. My OSC. file had multiple tags for each category sorted by their respective timestamp. Maybe this helps other newbies ;) answered 14 Nov '14, 15:05 kartenmalergidi |