Spaces:
Sleeping
Sleeping
File size: 1,572 Bytes
6ef6359 87dbbc6 6ef6359 87dbbc6 6ef6359 87dbbc6 6ef6359 87dbbc6 6ef6359 87dbbc6 6ef6359 | 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 | export const mockData = {
simulation_time: 124.5,
is_terminal: false,
active_runway: "27R",
wind_heading: 260.0,
wind_speed: 12.5,
time_scale: 1.0,
aircrafts: {
"UA123": {
callsign: "UA123",
type: "B738",
weight_class: "Medium",
x: 3.0,
y: 5.0,
altitude: 12000,
heading: 85.0,
target_heading: 90.0,
speed: 280,
target_speed: 250,
state: "ENROUTE",
fuel_level: 45.0,
emergency_index: 0,
active_star: "STAR_ALPHA",
wp_index: 2,
is_holding: false,
history: [[2.5, 4.8], [2.8, 4.9]]
},
"DL456": {
callsign: "DL456",
type: "A320",
weight_class: "Medium",
x: -2.0,
y: -1.5,
altitude: 5000,
heading: 120.0,
target_heading: 120.0,
speed: 210,
target_speed: 210,
state: "HOLDING",
fuel_level: 18.0,
emergency_index: 1,
active_star: null,
wp_index: 1,
is_holding: true,
history: [[-2.2, -1.2], [-2.1, -1.35]]
}
},
events: [
{ type: "RL_ACTION", msg: "[Step 44 | Reward: +05.0] Hold DL456 at WPT_BRAVO" },
{ type: "RL_ACTION", msg: "[Step 45 | Reward: -15.4] Route UA123 to WPT_ALPHA" }
],
airspace: {
nodes: [
{ id: "WPT_ALPHA", position: [40.7500, -74.1000] },
{ id: "WPT_BRAVO", position: [40.6000, -73.8000] }
],
edges: [
{ from: "WPT_ALPHA", to: "WPT_BRAVO" }
]
},
airports: [
{
name: "Coimbatore (VLB)",
lat: 11.030288,
lon: 77.039218,
runways: []
}
]
};
|