Update app.py
Browse files
app.py
CHANGED
@@ -774,7 +774,7 @@ with gr.Blocks(css=css, js=js, head=head) as demo:
|
|
774 |
m[l] = 0
|
775 |
h[l] = h[l] + 1
|
776 |
|
777 |
-
vtt = vtt + str(k+1) + "\n" + str(h[0]).zfill(2) + ":" + str(m[0]).zfill(2) + ":" + str(s[0]).zfill(2) + ".000 --> " + str(h[1]).zfill(2) + ":" + str(m[1]).zfill(2) + ":" + str(s[1]).zfill(2) + ".000\n" + locations[k]["lat"] + "," + locations[k]["lng"] + " " + locations[k]["heading"] + "," + locations[k]["pitch"] + "\n\n"
|
778 |
|
779 |
print(locations)
|
780 |
# 2.5m is height of camera on google street view car,
|
|
|
774 |
m[l] = 0
|
775 |
h[l] = h[l] + 1
|
776 |
|
777 |
+
vtt = vtt + str(k+1) + "\n" + str(h[0]).zfill(2) + ":" + str(m[0]).zfill(2) + ":" + str(s[0]).zfill(2) + ".000 --> " + str(h[1]).zfill(2) + ":" + str(m[1]).zfill(2) + ":" + str(s[1]).zfill(2) + ".000\n" + str(locations[k]["lat"]) + "," + str(locations[k]["lng"]) + " " + str(locations[k]["heading"]) + "," + str(locations[k]["pitch"]) + "\n\n"
|
778 |
|
779 |
print(locations)
|
780 |
# 2.5m is height of camera on google street view car,
|