File size: 3,257 Bytes
888cb3b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
  "hospitals": [
    {
      "id": "h0",
      "name": "City General Hospital",
      "address": "MG Road, Bengaluru",
      "lat": 12.9716,
      "lon": 77.5946,
      "total_beds": 100,
      "beds_available": 72,
      "icu_beds": 20,
      "icu_available": 14,
      "wait_time": 10,
      "specialties": ["Trauma", "Cardiology", "Neurology"]
    },
    {
      "id": "h1",
      "name": "Apex Medical Centre",
      "address": "Koramangala, Bengaluru",
      "lat": 12.9352,
      "lon": 77.6244,
      "total_beds": 80,
      "beds_available": 55,
      "icu_beds": 15,
      "icu_available": 9,
      "wait_time": 15,
      "specialties": ["Orthopedics", "General Surgery"]
    },
    {
      "id": "h2",
      "name": "St. Mary's Hospital",
      "address": "Hebbal, Bengaluru",
      "lat": 13.0012,
      "lon": 77.5800,
      "total_beds": 60,
      "beds_available": 48,
      "icu_beds": 10,
      "icu_available": 7,
      "wait_time": 5,
      "specialties": ["Pediatrics", "Obstetrics"]
    },
    {
      "id": "h3",
      "name": "LifeCare Institute",
      "address": "Indiranagar, Bengaluru",
      "lat": 12.9582,
      "lon": 77.6478,
      "total_beds": 120,
      "beds_available": 91,
      "icu_beds": 30,
      "icu_available": 22,
      "wait_time": 20,
      "specialties": ["ICU", "Burns", "Multi-Organ"]
    },
    {
      "id": "h4",
      "name": "Metro Emergency Hospital",
      "address": "Whitefield, Bengaluru",
      "lat": 12.9830,
      "lon": 77.6080,
      "total_beds": 90,
      "beds_available": 63,
      "icu_beds": 25,
      "icu_available": 18,
      "wait_time": 8,
      "specialties": ["Emergency", "Trauma", "Cardiology"]
    }
  ],
  "ambulances": [
    {
      "id": "a0",
      "name": "AMB-001",
      "lat": 12.9600,
      "lon": 77.5900,
      "status": "available",
      "assigned_patient": null,
      "speed_kmh": 60
    },
    {
      "id": "a1",
      "name": "AMB-002",
      "lat": 12.9800,
      "lon": 77.6100,
      "status": "available",
      "assigned_patient": null,
      "speed_kmh": 65
    },
    {
      "id": "a2",
      "name": "AMB-003",
      "lat": 12.9450,
      "lon": 77.6300,
      "status": "available",
      "assigned_patient": null,
      "speed_kmh": 55
    },
    {
      "id": "a3",
      "name": "AMB-004",
      "lat": 13.0000,
      "lon": 77.5700,
      "status": "available",
      "assigned_patient": null,
      "speed_kmh": 70
    }
  ],
  "sample_patients": [
    {
      "name": "Ravi Kumar",
      "severity": 9.2,
      "lat": 12.9720,
      "lon": 77.6010,
      "notes": "Cardiac arrest, unconscious"
    },
    {
      "name": "Priya Sharma",
      "severity": 5.5,
      "lat": 12.9550,
      "lon": 77.6200,
      "notes": "Fractured arm, stable"
    },
    {
      "name": "Anil Mehta",
      "severity": 2.1,
      "lat": 12.9900,
      "lon": 77.5850,
      "notes": "Minor laceration"
    },
    {
      "name": "Sunita Rao",
      "severity": 8.7,
      "lat": 12.9400,
      "lon": 77.6350,
      "notes": "Severe head injury, possible internal bleeding"
    },
    {
      "name": "Vikram Singh",
      "severity": 6.3,
      "lat": 12.9650,
      "lon": 77.5750,
      "notes": "Diabetic emergency, glucose critically low"
    }
  ]
}