Spaces:
Runtime error
Runtime error
Create Time.py
Browse files
Time.py
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from flask import Flask, render_template, jsonify
|
2 |
+
from flask_socketio import SocketIO
|
3 |
+
import threading
|
4 |
+
import time
|
5 |
+
|
6 |
+
app = Flask(__name__)
|
7 |
+
socketio = SocketIO(app)
|
8 |
+
|
9 |
+
# Simulate real-time updates
|
10 |
+
def update_data():
|
11 |
+
while True:
|
12 |
+
# Simulate data updates
|
13 |
+
data = {
|
14 |
+
'locations': {'Vehicle1': [40.7128, -74.0060], 'Vehicle2': [34.0522, -118.2437]},
|
15 |
+
'routes': ['Route1', 'Route2'],
|
16 |
+
'schedules': ['Schedule1', 'Schedule2']
|
17 |
+
}
|
18 |
+
socketio.emit('update_data', data)
|
19 |
+
time.sleep(5) # Update every 5 seconds
|
20 |
+
|
21 |
+
@app.route('/dashboard')
|
22 |
+
def dashboard():
|
23 |
+
return render_template('dashboard.html', map='Map Placeholder')
|
24 |
+
|
25 |
+
@app.route('/pressure')
|
26 |
+
def pressure():
|
27 |
+
pressures = {'Zone A': 30, 'Zone B': 45}
|
28 |
+
heatmap_img = 'Image Placeholder'
|
29 |
+
rewards = {'Vehicle1': 100, 'Vehicle2': 50}
|
30 |
+
assignments = {'Driver1': 'Zone A', 'Driver2': 'Zone B'}
|
31 |
+
return render_template('pressure.html', pressures=pressures, heatmap_img=heatmap_img, rewards=rewards, assignments=assignments)
|
32 |
+
|
33 |
+
if __name__ == '__main__':
|
34 |
+
threading.Thread(target=update_data).start()
|
35 |
+
socketio.run(app, debug=True)
|