0
に呼び出されていない、このコードは、それが明確にOpenStreetMapのから最新のアップデートをダウンロードしていても、任意のノード、方法、または関係を印刷しない:コールバックは、何らかの理由でpyosmiumの差分ダウンローダ
import logging
import osmium
from osmium.replication.server import ReplicationServer
logging.basicConfig(level=logging.DEBUG)
class Handler(osmium.SimpleHandler):
def __init__(self):
super(Handler, self).__init__()
def node(self, n):
print('n', n.id)
def way(self, w):
print('w', w.id)
def relation(self, r):
print('r', r.id)
h = Handler()
rs = ReplicationServer('http://planet.openstreetmap.org/replication/minute')
rs.apply_diffs(h, 2112110, 0.4*1024)
結果:
$ python3 osm2rdf.py
DEBUG:pyosmium:Downloaded change 2112110. (86 kB available in download buffer)
DEBUG:pyosmium:Downloaded change 2112111. (36 kB available in download buffer)
DEBUG:pyosmium:Downloaded change 2112112. (4 kB available in download buffer)
DEBUG:pyosmium:Downloaded change 2112113. (-139 kB available in download buffer)
Process finished with exit code 0
変更のダウンロード後に印刷された 'n'、 'w'、または 'r'は1つしかありません。
https://github.com/osmcode/pyosmium/issues/38 – mmd
@ mmdを参照してください。私は両方を作成して、私のバグかもしれないと思っていました。それはそうではなかったことが分かります:)それはとても速く解決されてうれしい! – Yurik