forked from annalogie-create/sichereRoute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
65 lines (53 loc) · 2.01 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import pandas as pd
import json
import math
filter = [
"Straßenbeleuchtung ausgefallen",
"Gewässerverunreinigung",
"Beschädigte Brücke, Tunnel, Mauer, Treppe",
"Beschädigtes Verkehrszeichen",
"Ampel gestört",
"Straßenbeleuchtung gestört",
"Beschädigter Stromkasten",
"Verunreinigung und Vandalismus",
"Beschädigte Geländer, Poller, Fahrradständer, Sitzgelegenheit",
]
def inFilter(feature):
return feature["properties"]["skat_text"] in filter
def differenzZwischenZweiPunkten(lat1,lon1,lat2,lon2):
R = 6371000
phi1 = math.radians(lat1)
phi2 = math.radians(lat2)
delta_phi = math.radians(lat2-lat1)
delta_lambda = math.radians(lon2-lon1)
a = math.sin(delta_phi/2)**2 + math.cos(phi1)*math.cos(phi2)*math.sin(delta_lambda/2)**2
c = 2 * math.atan2(math.sqrt(a), math.sqrt(1-a))
distance = R * c
return distance
def printCompleteData(indexList):
sicherheitsIndex = []
for index, row in haltestellen.iterrows():
sicherheitsIndex.append({"name": row[0], "latitude": row[1], "longitude": row[2], "count": indexList[index]})
print(json.JSONEncoder().encode(sicherheitsIndex))
haltestellen = pd.read_excel("data/HVV-Haltestellen.xlsx", header = 0)
with open("data/anliegen_extern.json", 'r', encoding='utf-8') as datei:
meldungen = json.load(datei)
features = [feature for feature in meldungen['features'] if inFilter(feature)]
indexList = []
for index, row in haltestellen.iterrows():
lat1 = row[1]
lon1 = row[2]
anzahlMeldungen= 0
for i in range(len(features)):
coordinates = meldungen['features'][i]['geometry']['coordinates']
#print(coordinates)
lat2= coordinates[0]
#print(lat2)
lon2 = coordinates[1]
if differenzZwischenZweiPunkten(lat1,lon1,lat2,lon2) < 100:
anzahlMeldungen += 1
i += 1
indexList.append(anzahlMeldungen)
print("durchlaufe Haltestellen - index: ", index, " row: ", row[0])
# print(indexList)
printCompleteData(indexList)