This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

Using osmium for planet update

1

I'm currently using osmupdate to update the latest planet to the very recent time:

./osmupdate tmp.pbf updated.pbf --hour --day --keep-tempfiles --drop-author

Now I wanted to try osmium to compare the performance but I cannot find a simple osmium command that does all the magic behind the scene (like fetching the necessary change files from the servers), I only found the normal apply-changes command. Is there an osmupdate equivalent for osmium like (?)

./osmium updatemagic tmp.pbf updated.pbf

Related question is this

asked 05 May '17, 10:25

peatar's gravatar image

peatar
3512312
accept rate: 8%

edited 05 May '17, 10:58


One Answer:

3

There is no Osmium command that can do that automagically, but there is one in the PyOsmium package. It is called pyosmium-up-to-date and it uses the Osmium C++ code internally, so it is as fast as Osmium.

answered 05 May '17, 22:14

Jochen%20Topf's gravatar image

Jochen Topf
5.2k55074
accept rate: 31%

Source code available on GitHub .