|
@@ -33,20 +33,19 @@ startpunkt = (raw_input("Geben sie Ihren Startpunkt an: "))
|
33
|
33
|
print ("-")*50
|
34
|
34
|
|
35
|
35
|
|
36
|
|
-idee = []
|
|
36
|
+Vorschlag = []
|
37
|
37
|
for line in datenbank:
|
38
|
38
|
if re.search(startpunkt, line):
|
39
|
39
|
|
40
|
|
- idee.append(line.split()) #Schreiben als liste
|
41
|
|
-
|
42
|
|
-for a in range(len(idee)):
|
43
|
|
- print "%i. idee:%s"%(a+1,idee[a])
|
|
40
|
+ Vorschlag.append(line.split()) #Schreiben als liste
|
|
41
|
+for a in range(len(Vorschlag)):
|
|
42
|
+ print "%i. Vorschlag: %s"%(a+1,Vorschlag[a][3])
|
44
|
43
|
print ("-")*50
|
45
|
44
|
|
46
|
45
|
choice = int(raw_input("Welche Option aus der Liste ist gewuenscht? "))-1
|
47
|
|
-print idee[choice]
|
48
|
|
-latitudestart = idee[choice][4]
|
49
|
|
-longitudestart = idee[choice][5]
|
|
46
|
+
|
|
47
|
+latitudestart = Vorschlag[choice][4]
|
|
48
|
+longitudestart = Vorschlag[choice][5]
|
50
|
49
|
|
51
|
50
|
print ("-")*50
|
52
|
51
|
|
|
@@ -61,36 +60,41 @@ endpunkt = (raw_input("Geben sie Ihren Endpunkt an: "))
|
61
|
60
|
print ("-")*50
|
62
|
61
|
|
63
|
62
|
|
64
|
|
-idee = [] #leeren der Liste
|
|
63
|
+Vorschlag = [] #leeren der Liste
|
65
|
64
|
for line in datenbank:
|
66
|
65
|
if re.search(endpunkt, line):
|
67
|
66
|
|
68
|
|
- idee.append(line.split()) #Schreiben als liste
|
|
67
|
+ Vorschlag.append(line.split()) #Schreiben als liste
|
69
|
68
|
|
70
|
|
-for a in range(len(idee)):
|
71
|
|
- print "%i. idee:%s"%(a+1,idee[a]) #%s string eingefuegt #%i dezimal/int
|
|
69
|
+for a in range(len(Vorschlag)):
|
|
70
|
+ print "%i. Vorschlag: %s"%(a+1,Vorschlag[a][3]) #%s string eingefuegt #%i dezimal/int
|
72
|
71
|
print ("-")*50
|
73
|
72
|
|
74
|
73
|
choice = int(raw_input("Welche Option aus der Liste ist gewuenscht? "))-1
|
75
|
74
|
|
76
|
|
-latitudeende = idee[choice][4]
|
77
|
|
-longitudeende = idee[choice][5]
|
|
75
|
+latitudeende = Vorschlag[choice][4]
|
|
76
|
+longitudeende = Vorschlag[choice][5]
|
78
|
77
|
|
79
|
78
|
|
80
|
79
|
|
81
|
80
|
#========================================================================
|
82
|
81
|
|
83
|
82
|
|
84
|
|
-
|
85
|
|
-print "-"*50
|
86
|
|
-
|
|
83
|
+print ("-")*50
|
|
84
|
+print
|
|
85
|
+print
|
|
86
|
+print
|
|
87
|
+print "="*50
|
|
88
|
+print "ACHTUNG! Hier muessen vier Gradeinheiten als (Float-Wert stehen)."
|
|
89
|
+print "Sollte dies nicht der Fall sein, stuertzt das Programm ab."
|
87
|
90
|
print "Zwischenausgabe der vier uebergebenen Variablen zur Berechnung:"
|
|
91
|
+print
|
88
|
92
|
print latitudestart
|
89
|
93
|
print longitudestart
|
90
|
94
|
print latitudeende
|
91
|
95
|
print longitudeende
|
92
|
|
-
|
93
|
|
-print "-"*50
|
|
96
|
+print "="*50
|
|
97
|
+print
|
94
|
98
|
|
95
|
99
|
|
96
|
100
|
#Berechnung
|
|
@@ -117,7 +121,12 @@ distance = R * c
|
117
|
121
|
print "-"*50
|
118
|
122
|
print ("Ihre Entfernung betraegt:"), distance, ("Kilometer. Gute Fahrt!")
|
119
|
123
|
print "-"*50
|
120
|
|
-
|
|
124
|
+print
|
|
125
|
+print
|
|
126
|
+print
|
|
127
|
+print
|
|
128
|
+print
|
|
129
|
+print
|
121
|
130
|
|
122
|
131
|
|
123
|
132
|
#======================================================================
|