viz1090/map_conversion/mapconverter.py
nathan 3a0b1aecf3 svg conversion in python, full 48 us states
Former-commit-id: 916991bafcbdcd5096382e11b1a75ca8da4d36ad
Former-commit-id: 74aafae150f8cd26b383bf37449cc861162ce7f5
2020-01-21 23:24:29 -08:00

15 lines
358 B
Python

from lxml import etree as ElementTree
parser = ElementTree.XMLParser(recover=True)
tree = ElementTree.parse('all.svg', parser)
polys = tree.xpath('//polygon')
text_file = open("test.txt", "wt")
for p in polys:
currentPoints = p.attrib['points']
currentPoints = currentPoints.replace(" ", ",")
text_file.write(currentPoints + ",0,0")
text_file.close()