We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49c490 commit ebe8f84Copy full SHA for ebe8f84
json2kml.py
@@ -39,9 +39,9 @@
39
for place in data["features"]:
40
if place["type"] == "Feature":
41
try:
42
- name = html.escape(place["properties"]["Title"])
+ name = place["properties"]["Title"]
43
except KeyError:
44
- name = html.escape(place["properties"]["name"])
+ name = place["properties"]["name"]
45
print(f'Parsing place "{name}"')
46
47
lon = place["geometry"]["coordinates"][0]
0 commit comments