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