我想获取一个osm文件,清理它,然后将其保存为json文件。 xml文件大约1 GB。
def audit():
osm_file = open('c:\Users\Stephan\Downloads\los-angeles_california.osm', "r")
with open('lala.txt', 'w') as outfile:
for event, elem in ET.iterparse(osm_file, events=("start",)):
if elem.tag == "node" or elem.tag == "way":
json.dump(shape_element(elem),outfile)
elem.clear()
audit()
虽然我使用elm.clear()但仍然会出现内存错误。谁知道为什么?
答案 0 :(得分:0)
osm_file = open('c:\Users\Stephan\Downloads\los-angeles_california.osm', "wr")
如果你想清理它,它应该是可写的