Parse Stadtteile
This commit is contained in:
31
geoparserstadtteile.py
Normal file
31
geoparserstadtteile.py
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
import json
|
||||||
|
import os
|
||||||
|
from collections import defaultdict
|
||||||
|
|
||||||
|
|
||||||
|
os.chdir("C:\\Users\\milli\\Documents\\Datenbereinigung")
|
||||||
|
|
||||||
|
output_file = {
|
||||||
|
"type": "FeatureCollection",
|
||||||
|
"features": [],
|
||||||
|
}
|
||||||
|
|
||||||
|
bezirk_table = defaultdict(dict)
|
||||||
|
|
||||||
|
with open("geostadtteile.json", "r", encoding='utf-8') as file:
|
||||||
|
data = json.load(file)
|
||||||
|
for entry in data["features"]:
|
||||||
|
if entry["properties"]["jahr_date"] == "2024-12-31":
|
||||||
|
output_file["features"].append({
|
||||||
|
"type": entry["type"],
|
||||||
|
"id": entry["id"],
|
||||||
|
"geometry": entry["geometry"],
|
||||||
|
"srsName": entry["srsName"],
|
||||||
|
"properties": {
|
||||||
|
"stadtteil": entry["properties"]["stadtteil"],
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
with open("geostadtteile-parsed.json", "w", encoding='utf-8') as output:
|
||||||
|
json.dump(output_file, output, ensure_ascii=False, indent=4)
|
||||||
221254
geostadtteile-parsed.json
Normal file
221254
geostadtteile-parsed.json
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user