Door page / cruise page
This commit is contained in:
parent
daba88a00e
commit
b9b39fbc0a
5 changed files with 360 additions and 399 deletions
|
@ -23,6 +23,86 @@ var canvas_lowerECAMPageCruise =
|
||||||
# init
|
# init
|
||||||
|
|
||||||
obj.update_items = [
|
obj.update_items = [
|
||||||
|
props.UpdateManager.FromHashValue("engOil1", 0.005, func(val) {
|
||||||
|
if (obj.units) {
|
||||||
|
obj["Oil1"].setText(sprintf("%2.1f",(0.1 * math.round(val * QT2LTR * 10,5))));
|
||||||
|
} else {
|
||||||
|
obj["Oil1"].setText(sprintf("%2.1f",(0.1 * math.round(val * 10,5))));
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("engOil2", 0.005, func(val) {
|
||||||
|
if (obj.units) {
|
||||||
|
obj["Oil2"].setText(sprintf("%2.1f",(0.1 * math.round(val * QT2LTR * 10,5))));
|
||||||
|
} else {
|
||||||
|
obj["Oil2"].setText(sprintf("%2.1f",(0.1 * math.round(val * 10,5))));
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("acconfigUnits", nil, func(val) {
|
||||||
|
if (val) {
|
||||||
|
obj["Fused-weight-unit"].setText("KG");
|
||||||
|
obj["OilUnit"].setText("LTR");
|
||||||
|
# immediately update parameters
|
||||||
|
obj["Oil1"].setText(sprintf("%2.1f",(0.1 * math.round(pts.Engines.Engine.oilQt[0].getValue() * QT2LTR * 10,5))));
|
||||||
|
obj["Oil2"].setText(sprintf("%2.1f",(0.1 * math.round(pts.Engines.Engine.oilQt[1].getValue() * QT2LTR * 10,5))));
|
||||||
|
obj["FUsed1"].setText(sprintf("%s", math.round(fuel_used_lbs1.getValue() * LBS2KGS, 10)));
|
||||||
|
obj["FUsed2"].setText(sprintf("%s", math.round(fuel_used_lbs2.getValue() * LBS2KGS, 10)));
|
||||||
|
} else {
|
||||||
|
obj["Fused-weight-unit"].setText("LBS");
|
||||||
|
obj["OilUnit"].setText("QT");
|
||||||
|
obj["Oil1"].setText(sprintf("%2.1f",(0.1 * math.round(pts.Engines.Engine.oilQt[0].getValue() * 10,5))));
|
||||||
|
obj["Oil2"].setText(sprintf("%2.1f",(0.1 * math.round(pts.Engines.Engine.oilQt[1].getValue() * 10,5))));
|
||||||
|
obj["FUsed1"].setText(sprintf("%s", math.round(fuel_used_lbs1.getValue(), 10)));
|
||||||
|
obj["FUsed2"].setText(sprintf("%s", math.round(fuel_used_lbs2.getValue(), 10)));
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("engFuelUsed1", 1, func(val) {
|
||||||
|
if (obj.units) {
|
||||||
|
obj["FUsed1"].setText(sprintf("%s", math.round(val * LBS2KGS, 10)));
|
||||||
|
} else {
|
||||||
|
obj["FUsed1"].setText(sprintf("%s", math.round(val, 10)));
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("engFuelUsed2", 1, func(val) {
|
||||||
|
if (obj.units) {
|
||||||
|
obj["FUsed2"].setText(sprintf("%s", math.round(val * LBS2KGS, 10)));
|
||||||
|
} else {
|
||||||
|
obj["FUsed2"].setText(sprintf("%s", math.round(val, 10)));
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashList(["engFuelUsed1","engFuelUsed2"], 1, func(val) {
|
||||||
|
if (obj.units) {
|
||||||
|
obj["FUsed"].setText(sprintf("%s", math.round((val.engFuelUsed1 + val.engFuelUsed2) * LBS2KGS, 10)));
|
||||||
|
} else {
|
||||||
|
obj["FUsed"].setText(sprintf("%s", math.round((val.engFuelUsed1 + val.engFuelUsed2), 10)));
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("pressDelta", 0.05, func(val) {
|
||||||
|
if (val > 31.9) {
|
||||||
|
obj["deltaPSI"].setText(sprintf("%2.1f", 31.9));
|
||||||
|
} else if (val < -9.9) {
|
||||||
|
obj["deltaPSI"].setText(sprintf("%2.1f", -9.9));
|
||||||
|
} else {
|
||||||
|
obj["deltaPSI"].setText(sprintf("%2.1f", val));
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("pressVS", 25, func(val) {
|
||||||
|
if (val > 9950) {
|
||||||
|
obj["CABVS"].setText(sprintf("%4.0f", 9950));
|
||||||
|
} else if (val < -9950) {
|
||||||
|
obj["CABVS"].setText(sprintf("%4.0f", -9950));
|
||||||
|
} else {
|
||||||
|
obj["CABVS"].setText(sprintf("%-4.0f", math.round(val,50)));
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("condTempCockpit", 0.5, func(val) {
|
||||||
|
obj["CKPT-TEMP"].setText(sprintf("%2.0f",val));
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("condTempAft", 0.5, func(val) {
|
||||||
|
obj["AFT-TEMP"].setText(sprintf("%2.0f",val));
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("condTempFwd", 0.5, func(val) {
|
||||||
|
obj["FWD-TEMP"].setText(sprintf("%2.0f",val));
|
||||||
|
}),
|
||||||
];
|
];
|
||||||
|
|
||||||
obj.displayedGForce = 0;
|
obj.displayedGForce = 0;
|
||||||
|
@ -62,10 +142,8 @@ var canvas_lowerECAMPageCruise =
|
||||||
return ["TAT","SAT","GW","UTCh","UTCm","GLoad","GW-weight-unit"];
|
return ["TAT","SAT","GW","UTCh","UTCm","GLoad","GW-weight-unit"];
|
||||||
},
|
},
|
||||||
getKeys: func() {
|
getKeys: func() {
|
||||||
return["Bulk","BulkLine","BulkLbl","Exit1L","Exit1R","Cabin1Left","Cabin1LeftLbl","Cabin1LeftLine","Cabin1LeftSlide","Cabin1Right","Cabin1RightLbl","Cabin1RightLine","Cabin1RightSlide","Cabin2Left","Cabin2LeftLbl",
|
return["Oil1","Oil2","FUsed1","FUsed2","FUsed","VIB1N1","VIB1N2","VIB2N1","VIB2N2","deltaPSI","LDGELEV-AUTO","LDGELEV","CABVS","CABALT","VS-Arrow-UP","VS-Arrow-DN","CKPT-TEMP","FWD-TEMP","AFT-TEMP","Fused-weight-unit"];
|
||||||
"Cabin2LeftLine","Cabin2LeftSlide","Cabin2Right","Cabin2RightLbl","Cabin2RightLine","Cabin2RightSlide","Cabin3Left","Cabin3LeftLbl","Cabin3LeftLine","Cabin3LeftSlide","Cabin3Right","Cabin3RightLbl","Cabin3RightLine","Cabin3RightSlide","AvionicsLine1",
|
},
|
||||||
"AvionicsLbl1","AvionicsLine2","AvionicsLbl2","Cargo1Line","Cargo1Lbl","Cargo1Door","Cargo2Line","Cargo2Lbl","Cargo2Door","ExitLSlide","ExitLLine","ExitLLbl","ExitRSlide","ExitRLine","ExitRLbl","Cabin4Left","Cabin4LeftLbl","Cabin4LeftLine",
|
|
||||||
"Cabin4LeftSlide","Cabin4Right","Cabin4RightLbl","Cabin4RightLine","Cabin4RightSlide","DOOROXY-REGUL-LO-PR"];},
|
|
||||||
updateBottom: func(notification) {
|
updateBottom: func(notification) {
|
||||||
foreach(var update_item_bottom; me.updateItemsBottom)
|
foreach(var update_item_bottom; me.updateItemsBottom)
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,8 +21,171 @@ var canvas_lowerECAMPageDoor =
|
||||||
obj.units = acconfig_weight_kgs.getValue();
|
obj.units = acconfig_weight_kgs.getValue();
|
||||||
|
|
||||||
# init
|
# init
|
||||||
|
obj["Cabin2LeftSlide"].hide();
|
||||||
|
obj["Cabin2RightSlide"].hide();
|
||||||
|
obj["Cabin3LeftSlide"].hide();
|
||||||
|
obj["Cabin3RightSlide"].hide();
|
||||||
|
|
||||||
|
obj["DOOROXY-REGUL-LO-PR"].hide();
|
||||||
|
obj["AvionicsLine1"].hide();
|
||||||
|
obj["AvionicsLine2"].hide();
|
||||||
|
obj["AvionicsLbl1"].hide();
|
||||||
|
obj["AvionicsLbl2"].hide();
|
||||||
|
obj["ExitLLine"].hide();
|
||||||
|
obj["ExitLLbl"].hide();
|
||||||
|
obj["ExitRLine"].hide();
|
||||||
|
obj["ExitRLbl"].hide();
|
||||||
|
obj["Cabin2Left"].hide();
|
||||||
|
obj["Cabin2LeftLine"].hide();
|
||||||
|
obj["Cabin2LeftLbl"].hide();
|
||||||
|
obj["Cabin2Right"].hide();
|
||||||
|
obj["Cabin2RightLine"].hide();
|
||||||
|
obj["Cabin2RightLbl"].hide();
|
||||||
|
obj["Cabin3Left"].hide();
|
||||||
|
obj["Cabin3LeftLine"].hide();
|
||||||
|
obj["Cabin3LeftLbl"].hide();
|
||||||
|
obj["Cabin3Right"].hide();
|
||||||
|
obj["Cabin3RightLine"].hide();
|
||||||
|
obj["Cabin3RightLbl"].hide();
|
||||||
|
|
||||||
|
|
||||||
obj.update_items = [
|
obj.update_items = [
|
||||||
|
props.UpdateManager.FromHashValue("doorL1", nil, func(val) {
|
||||||
|
if (val > 0) {
|
||||||
|
obj["Cabin1Left"].show();
|
||||||
|
obj["Cabin1Left"].setColor(0.7333,0.3803,0);
|
||||||
|
obj["Cabin1Left"].setColorFill(0.7333,0.3803,0);
|
||||||
|
obj["Cabin1LeftLbl"].show();
|
||||||
|
obj["Cabin1LeftLine"].show();
|
||||||
|
obj["Cabin1LeftSlide"].hide();
|
||||||
|
} else {
|
||||||
|
obj["Cabin1Left"].setColor(0.0509,0.7529,0.2941);
|
||||||
|
obj["Cabin1Left"].setColorFill(0,0,0);
|
||||||
|
obj["Cabin1LeftLbl"].hide();
|
||||||
|
obj["Cabin1LeftLine"].hide();
|
||||||
|
obj["Cabin1LeftSlide"].show();
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("doorL4", nil, func(val) {
|
||||||
|
if (val > 0) {
|
||||||
|
obj["Cabin4Left"].show();
|
||||||
|
obj["Cabin4Left"].setColor(0.7333,0.3803,0);
|
||||||
|
obj["Cabin4Left"].setColorFill(0.7333,0.3803,0);
|
||||||
|
obj["Cabin4LeftLbl"].show();
|
||||||
|
obj["Cabin4LeftLine"].show();
|
||||||
|
obj["Cabin4LeftSlide"].hide();
|
||||||
|
} else {
|
||||||
|
obj["Cabin4Left"].setColor(0.0509,0.7529,0.2941);
|
||||||
|
obj["Cabin4Left"].setColorFill(0,0,0);
|
||||||
|
obj["Cabin4LeftLbl"].hide();
|
||||||
|
obj["Cabin4LeftLine"].hide();
|
||||||
|
obj["Cabin4LeftSlide"].show();
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("doorR1", nil, func(val) {
|
||||||
|
if (val > 0) {
|
||||||
|
obj["Cabin1Right"].show();
|
||||||
|
obj["Cabin1Right"].setColor(0.7333,0.3803,0);
|
||||||
|
obj["Cabin1Right"].setColorFill(0.7333,0.3803,0);
|
||||||
|
obj["Cabin1RightLbl"].show();
|
||||||
|
obj["Cabin1RightLine"].show();
|
||||||
|
obj["Cabin1RightSlide"].hide();
|
||||||
|
} else {
|
||||||
|
obj["Cabin1Right"].setColor(0.0509,0.7529,0.2941);
|
||||||
|
obj["Cabin1Right"].setColorFill(0,0,0);
|
||||||
|
obj["Cabin1RightLbl"].hide();
|
||||||
|
obj["Cabin1RightLine"].hide();
|
||||||
|
obj["Cabin1RightSlide"].show();
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("doorR4", nil, func(val) {
|
||||||
|
if (val > 0) {
|
||||||
|
obj["Cabin4Right"].show();
|
||||||
|
obj["Cabin4Right"].setColor(0.7333,0.3803,0);
|
||||||
|
obj["Cabin4Right"].setColorFill(0.7333,0.3803,0);
|
||||||
|
obj["Cabin4RightLbl"].show();
|
||||||
|
obj["Cabin4RightLine"].show();
|
||||||
|
obj["Cabin4RightSlide"].hide();
|
||||||
|
} else {
|
||||||
|
obj["Cabin4Right"].setColor(0.0509,0.7529,0.2941);
|
||||||
|
obj["Cabin4Right"].setColorFill(0,0,0);
|
||||||
|
obj["Cabin4RightLbl"].hide();
|
||||||
|
obj["Cabin4RightLine"].hide();
|
||||||
|
obj["Cabin4RightSlide"].show();
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("cargoAft", nil, func(val) {
|
||||||
|
if (val > 0) {
|
||||||
|
obj["Cargo2Door"].setColor(0.7333,0.3803,0);
|
||||||
|
obj["Cargo2Door"].setColorFill(0.7333,0.3803,0);
|
||||||
|
obj["Cargo2Lbl"].show();
|
||||||
|
obj["Cargo2Line"].show();
|
||||||
|
} else {
|
||||||
|
obj["Cargo2Door"].setColor(0.0509,0.7529,0.2941);
|
||||||
|
obj["Cargo2Door"].setColorFill(0,0,0);
|
||||||
|
obj["Cargo2Lbl"].hide();
|
||||||
|
obj["Cargo2Line"].hide();
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("cargoBulk", nil, func(val) {
|
||||||
|
if (val > 0) {
|
||||||
|
obj["Bulk"].setColor(0.7333,0.3803,0);
|
||||||
|
obj["Bulk"].setColorFill(0.7333,0.3803,0);
|
||||||
|
obj["BulkLbl"].show();
|
||||||
|
obj["BulkLine"].show();
|
||||||
|
} else {
|
||||||
|
obj["Bulk"].setColor(0.0509,0.7529,0.2941);
|
||||||
|
obj["Bulk"].setColorFill(0,0,0);
|
||||||
|
obj["BulkLbl"].hide();
|
||||||
|
obj["BulkLine"].hide();
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("cargoFwd", nil, func(val) {
|
||||||
|
if (val > 0) {
|
||||||
|
obj["Cargo1Door"].setColor(0.7333,0.3803,0);
|
||||||
|
obj["Cargo1Door"].setColorFill(0.7333,0.3803,0);
|
||||||
|
obj["Cargo1Lbl"].show();
|
||||||
|
obj["Cargo1Line"].show();
|
||||||
|
} else {
|
||||||
|
obj["Cargo1Door"].setColor(0.0509,0.7529,0.2941);
|
||||||
|
obj["Cargo1Door"].setColorFill(0,0,0);
|
||||||
|
obj["Cargo1Lbl"].hide();
|
||||||
|
obj["Cargo1Line"].hide();
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("oxyPB", nil, func(val) {
|
||||||
|
if (val) {
|
||||||
|
obj["DOOROXY-OxyIndicator"].setColor(0.8078,0.8039,0.8078);
|
||||||
|
obj["DOOROXY-PR"].setColor(0.0509,0.7529,0.2941);
|
||||||
|
obj["DOOROXY-PR"].setText("1300");
|
||||||
|
} else {
|
||||||
|
obj["DOOROXY-OxyIndicator"].setColor(0.7333,0.3803,0);
|
||||||
|
obj["DOOROXY-PR"].setColor(0.7333,0.3803,0);
|
||||||
|
obj["DOOROXY-PR"].setText("0");
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("pressVS", nil, func(val) {
|
||||||
|
if (val > 9950) {
|
||||||
|
obj["DOOR-VS"].setText(sprintf("%+4.0f", 9950));
|
||||||
|
} else if (val < -9950) {
|
||||||
|
obj["DOOR-VS"].setText(sprintf("%+4.0f", -9950));
|
||||||
|
} else {
|
||||||
|
obj["DOOR-VS"].setText(sprintf("%+4.0f", math.round(val,50)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (abs(val) > 2000) {
|
||||||
|
obj["DOOR-VS"].setColor(0.7333,0.3803,0);
|
||||||
|
} else {
|
||||||
|
obj["DOOR-VS"].setColor(0.0509,0.7529,0.2941);
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
props.UpdateManager.FromHashValue("FWCPhase", nil, func(val) {
|
||||||
|
if (val >= 5 and val <= 7) {
|
||||||
|
obj["DOOR-VS-Container"].show();
|
||||||
|
} else {
|
||||||
|
obj["DOOR-VS-Container"].hide();
|
||||||
|
}
|
||||||
|
}),
|
||||||
];
|
];
|
||||||
|
|
||||||
obj.displayedGForce = 0;
|
obj.displayedGForce = 0;
|
||||||
|
@ -65,7 +228,8 @@ var canvas_lowerECAMPageDoor =
|
||||||
return["Bulk","BulkLine","BulkLbl","Exit1L","Exit1R","Cabin1Left","Cabin1LeftLbl","Cabin1LeftLine","Cabin1LeftSlide","Cabin1Right","Cabin1RightLbl","Cabin1RightLine","Cabin1RightSlide","Cabin2Left","Cabin2LeftLbl",
|
return["Bulk","BulkLine","BulkLbl","Exit1L","Exit1R","Cabin1Left","Cabin1LeftLbl","Cabin1LeftLine","Cabin1LeftSlide","Cabin1Right","Cabin1RightLbl","Cabin1RightLine","Cabin1RightSlide","Cabin2Left","Cabin2LeftLbl",
|
||||||
"Cabin2LeftLine","Cabin2LeftSlide","Cabin2Right","Cabin2RightLbl","Cabin2RightLine","Cabin2RightSlide","Cabin3Left","Cabin3LeftLbl","Cabin3LeftLine","Cabin3LeftSlide","Cabin3Right","Cabin3RightLbl","Cabin3RightLine","Cabin3RightSlide","AvionicsLine1",
|
"Cabin2LeftLine","Cabin2LeftSlide","Cabin2Right","Cabin2RightLbl","Cabin2RightLine","Cabin2RightSlide","Cabin3Left","Cabin3LeftLbl","Cabin3LeftLine","Cabin3LeftSlide","Cabin3Right","Cabin3RightLbl","Cabin3RightLine","Cabin3RightSlide","AvionicsLine1",
|
||||||
"AvionicsLbl1","AvionicsLine2","AvionicsLbl2","Cargo1Line","Cargo1Lbl","Cargo1Door","Cargo2Line","Cargo2Lbl","Cargo2Door","ExitLSlide","ExitLLine","ExitLLbl","ExitRSlide","ExitRLine","ExitRLbl","Cabin4Left","Cabin4LeftLbl","Cabin4LeftLine",
|
"AvionicsLbl1","AvionicsLine2","AvionicsLbl2","Cargo1Line","Cargo1Lbl","Cargo1Door","Cargo2Line","Cargo2Lbl","Cargo2Door","ExitLSlide","ExitLLine","ExitLLbl","ExitRSlide","ExitRLine","ExitRLbl","Cabin4Left","Cabin4LeftLbl","Cabin4LeftLine",
|
||||||
"Cabin4LeftSlide","Cabin4Right","Cabin4RightLbl","Cabin4RightLine","Cabin4RightSlide","DOOROXY-REGUL-LO-PR"];},
|
"Cabin4LeftSlide","Cabin4Right","Cabin4RightLbl","Cabin4RightLine","Cabin4RightSlide","DOOROXY-REGUL-LO-PR","DOOROXY-PR","DOOROXY-OxyIndicator","DOOR-VS","DOOR-VS-Container"];
|
||||||
|
},
|
||||||
updateBottom: func(notification) {
|
updateBottom: func(notification) {
|
||||||
foreach(var update_item_bottom; me.updateItemsBottom)
|
foreach(var update_item_bottom; me.updateItemsBottom)
|
||||||
{
|
{
|
||||||
|
@ -140,6 +304,14 @@ var canvas_lowerECAMPageDoor =
|
||||||
};
|
};
|
||||||
|
|
||||||
var input = {
|
var input = {
|
||||||
|
doorL1: "/sim/model/door-positions/doorl1/position-norm",
|
||||||
|
doorL4: "/sim/model/door-positions/doorl4/position-norm",
|
||||||
|
doorR1: "/sim/model/door-positions/doorr1/position-norm",
|
||||||
|
doorR4: "/sim/model/door-positions/doorr4/position-norm",
|
||||||
|
cargoAft: "/sim/model/door-positions/cargoaft/position-norm",
|
||||||
|
cargoBulk: "/sim/model/door-positions/cargobulk/position-norm",
|
||||||
|
cargoFwd: "/sim/model/door-positions/cargofwd/position-norm",
|
||||||
|
oxyPB: "/controls/oxygen/crewOxyPB",
|
||||||
};
|
};
|
||||||
|
|
||||||
foreach (var name; keys(input)) {
|
foreach (var name; keys(input)) {
|
||||||
|
|
|
@ -105,13 +105,6 @@ var pack2_bypass = props.globals.getNode("/systems/pneumatics/pack-2-bypass", 1)
|
||||||
var oil_qt1_actual = props.globals.getNode("", 1);
|
var oil_qt1_actual = props.globals.getNode("", 1);
|
||||||
var oil_qt2_actual = props.globals.getNode("/engines/engine[1]/oil-qt-actual", 1);
|
var oil_qt2_actual = props.globals.getNode("/engines/engine[1]/oil-qt-actual", 1);
|
||||||
var fuel_used_lbs1 = props.globals.getNode("", 1);
|
var fuel_used_lbs1 = props.globals.getNode("", 1);
|
||||||
var doorL1_pos = props.globals.getNode("/sim/model/door-positions/doorl1/position-norm", 1);
|
|
||||||
var doorR1_pos = props.globals.getNode("/sim/model/door-positions/doorr1/position-norm", 1);
|
|
||||||
var doorL4_pos = props.globals.getNode("/sim/model/door-positions/doorl4/position-norm", 1);
|
|
||||||
var doorR4_pos = props.globals.getNode("/sim/model/door-positions/doorr4/position-norm", 1);
|
|
||||||
var cargobulk_pos = props.globals.getNode("/sim/model/door-positions/cargobulk/position-norm", 1);
|
|
||||||
var cargofwd_pos = props.globals.getNode("/sim/model/door-positions/cargofwd/position-norm", 1);
|
|
||||||
var cargoaft_pos = props.globals.getNode("/sim/model/door-positions/cargoaft/position-norm", 1);
|
|
||||||
var gLoad = props.globals.getNode("", 1);
|
var gLoad = props.globals.getNode("", 1);
|
||||||
|
|
||||||
# Hydraulic
|
# Hydraulic
|
||||||
|
@ -796,183 +789,6 @@ var canvas_lowerECAM_bleed = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
var canvas_lowerECAM_crz = {
|
|
||||||
new: func(canvas_group, file) {
|
|
||||||
var m = {parents: [canvas_lowerECAM_crz, canvas_lowerECAM_base]};
|
|
||||||
m.init(canvas_group, file);
|
|
||||||
|
|
||||||
return m;
|
|
||||||
},
|
|
||||||
getKeys: func() {
|
|
||||||
return ["TAT","SAT","GW","UTCh","UTCm","GLoad","GW-weight-unit","Oil1","Oil2","FUsed1","FUsed2","FUsed","VIB1N1","VIB1N2","VIB2N1","VIB2N2","deltaPSI","LDGELEV-AUTO","LDGELEV","CABVS","CABALT","VS-Arrow-UP","VS-Arrow-DN","CKPT-TEMP","FWD-TEMP","AFT-TEMP","Fused-weight-unit"];
|
|
||||||
},
|
|
||||||
update: func() {
|
|
||||||
|
|
||||||
me["Oil1"].setText(sprintf("%2.1f", oil_qt1_actual.getValue()));
|
|
||||||
me["Oil2"].setText(sprintf("%2.1f", oil_qt2_actual.getValue()));
|
|
||||||
|
|
||||||
if (acconfig_weight_kgs.getValue()) {
|
|
||||||
me["Fused-weight-unit"].setText("KG");
|
|
||||||
me["FUsed1"].setText(sprintf("%s", math.round(fuel_used_lbs1.getValue() * LBS2KGS, 10)));
|
|
||||||
me["FUsed2"].setText(sprintf("%s", math.round(fuel_used_lbs2.getValue() * LBS2KGS, 10)));
|
|
||||||
me["FUsed"].setText(sprintf("%s", (math.round(fuel_used_lbs1.getValue() * LBS2KGS, 10) + math.round(fuel_used_lbs2.getValue() * LBS2KGS, 10))));
|
|
||||||
} else {
|
|
||||||
me["Fused-weight-unit"].setText("LBS");
|
|
||||||
me["FUsed1"].setText(sprintf("%s", math.round(fuel_used_lbs1.getValue(), 10)));
|
|
||||||
me["FUsed2"].setText(sprintf("%s", math.round(fuel_used_lbs2.getValue(), 10)));
|
|
||||||
me["FUsed"].setText(sprintf("%s", (math.round(fuel_used_lbs1.getValue(), 10) + math.round(fuel_used_lbs2.getValue(), 10))));
|
|
||||||
}
|
|
||||||
|
|
||||||
me.updateBottomStatus();
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
var canvas_lowerECAM_door = {
|
|
||||||
new: func(canvas_group, file) {
|
|
||||||
var m = {parents: [canvas_lowerECAM_door, canvas_lowerECAM_base]};
|
|
||||||
m.init(canvas_group, file);
|
|
||||||
|
|
||||||
return m;
|
|
||||||
},
|
|
||||||
getKeys: func() {
|
|
||||||
return["TAT","SAT","GW","UTCh","UTCm","GLoad","GW-weight-unit","Bulk","BulkLine","BulkLbl","Exit1L","Exit1R","Cabin1Left","Cabin1LeftLbl","Cabin1LeftLine","Cabin1LeftSlide","Cabin1Right","Cabin1RightLbl","Cabin1RightLine","Cabin1RightSlide","Cabin2Left","Cabin2LeftLbl",
|
|
||||||
"Cabin2LeftLine","Cabin2LeftSlide","Cabin2Right","Cabin2RightLbl","Cabin2RightLine","Cabin2RightSlide","Cabin3Left","Cabin3LeftLbl","Cabin3LeftLine","Cabin3LeftSlide","Cabin3Right","Cabin3RightLbl","Cabin3RightLine","Cabin3RightSlide","AvionicsLine1",
|
|
||||||
"AvionicsLbl1","AvionicsLine2","AvionicsLbl2","Cargo1Line","Cargo1Lbl","Cargo1Door","Cargo2Line","Cargo2Lbl","Cargo2Door","ExitLSlide","ExitLLine","ExitLLbl","ExitRSlide","ExitRLine","ExitRLbl","Cabin4Left","Cabin4LeftLbl","Cabin4LeftLine",
|
|
||||||
"Cabin4LeftSlide","Cabin4Right","Cabin4RightLbl","Cabin4RightLine","Cabin4RightSlide","DOOROXY-REGUL-LO-PR"];
|
|
||||||
},
|
|
||||||
update: func() {
|
|
||||||
# If you make AirBerlin or Allegiant livery add below
|
|
||||||
|
|
||||||
if (doorL1_pos.getValue() > 0) {
|
|
||||||
me["Cabin1Left"].show();
|
|
||||||
me["Cabin1Left"].setColor(0.7333,0.3803,0);
|
|
||||||
me["Cabin1Left"].setColorFill(0.7333,0.3803,0);
|
|
||||||
me["Cabin1LeftLbl"].show();
|
|
||||||
me["Cabin1LeftLine"].show();
|
|
||||||
} else {
|
|
||||||
me["Cabin1Left"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["Cabin1Left"].setColorFill(0,0,0);
|
|
||||||
me["Cabin1LeftLbl"].hide();
|
|
||||||
me["Cabin1LeftLine"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (doorR1_pos.getValue() > 0) {
|
|
||||||
me["Cabin1Right"].show();
|
|
||||||
me["Cabin1Right"].setColor(0.7333,0.3803,0);
|
|
||||||
me["Cabin1Right"].setColorFill(0.7333,0.3803,0);
|
|
||||||
me["Cabin1RightLbl"].show();
|
|
||||||
me["Cabin1RightLine"].show();
|
|
||||||
} else {
|
|
||||||
me["Cabin1Right"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["Cabin1Right"].setColorFill(0,0,0);
|
|
||||||
me["Cabin1RightLbl"].hide();
|
|
||||||
me["Cabin1RightLine"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (doorL4_pos.getValue() > 0) {
|
|
||||||
me["Cabin4Left"].show();
|
|
||||||
me["Cabin4Left"].setColor(0.7333,0.3803,0);
|
|
||||||
me["Cabin4Left"].setColorFill(0.7333,0.3803,0);
|
|
||||||
me["Cabin4LeftLbl"].show();
|
|
||||||
me["Cabin4LeftLine"].show();
|
|
||||||
} else {
|
|
||||||
me["Cabin4Left"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["Cabin4Left"].setColorFill(0,0,0);
|
|
||||||
me["Cabin4LeftLbl"].hide();
|
|
||||||
me["Cabin4LeftLine"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (doorR4_pos.getValue() > 0) {
|
|
||||||
me["Cabin4Right"].show();
|
|
||||||
me["Cabin4Right"].setColor(0.7333,0.3803,0);
|
|
||||||
me["Cabin4Right"].setColorFill(0.7333,0.3803,0);
|
|
||||||
me["Cabin4RightLbl"].show();
|
|
||||||
me["Cabin4RightLine"].show();
|
|
||||||
} else {
|
|
||||||
me["Cabin4Right"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["Cabin4Right"].setColorFill(0,0,0);
|
|
||||||
me["Cabin4RightLbl"].hide();
|
|
||||||
me["Cabin4RightLine"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cargobulk_pos.getValue() > 0) {
|
|
||||||
me["Bulk"].setColor(0.7333,0.3803,0);
|
|
||||||
me["Bulk"].setColorFill(0.7333,0.3803,0);
|
|
||||||
me["BulkLbl"].show();
|
|
||||||
me["BulkLine"].show();
|
|
||||||
} else {
|
|
||||||
me["Bulk"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["Bulk"].setColorFill(0,0,0);
|
|
||||||
me["BulkLbl"].hide();
|
|
||||||
me["BulkLine"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cargofwd_pos.getValue() > 0) {
|
|
||||||
me["Cargo1Door"].setColor(0.7333,0.3803,0);
|
|
||||||
me["Cargo1Door"].setColorFill(0.7333,0.3803,0);
|
|
||||||
me["Cargo1Lbl"].show();
|
|
||||||
me["Cargo1Line"].show();
|
|
||||||
} else {
|
|
||||||
me["Cargo1Door"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["Cargo1Door"].setColorFill(0,0,0);
|
|
||||||
me["Cargo1Lbl"].hide();
|
|
||||||
me["Cargo1Line"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cargoaft_pos.getValue() > 0) {
|
|
||||||
me["Cargo2Door"].setColor(0.7333,0.3803,0);
|
|
||||||
me["Cargo2Door"].setColorFill(0.7333,0.3803,0);
|
|
||||||
me["Cargo2Lbl"].show();
|
|
||||||
me["Cargo2Line"].show();
|
|
||||||
} else {
|
|
||||||
me["Cargo2Door"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["Cargo2Door"].setColorFill(0,0,0);
|
|
||||||
me["Cargo2Lbl"].hide();
|
|
||||||
me["Cargo2Line"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
me["Cabin1LeftSlide"].hide();
|
|
||||||
me["Cabin1RightSlide"].hide();
|
|
||||||
me["Cabin2LeftSlide"].hide();
|
|
||||||
me["Cabin2RightSlide"].hide();
|
|
||||||
me["Cabin3LeftSlide"].hide();
|
|
||||||
me["Cabin3RightSlide"].hide();
|
|
||||||
me["Cabin4LeftSlide"].hide();
|
|
||||||
me["Cabin4RightSlide"].hide();
|
|
||||||
|
|
||||||
me["DOOROXY-REGUL-LO-PR"].hide();
|
|
||||||
me["AvionicsLine1"].hide();
|
|
||||||
me["AvionicsLine2"].hide();
|
|
||||||
me["AvionicsLbl1"].hide();
|
|
||||||
me["AvionicsLbl2"].hide();
|
|
||||||
me["ExitLSlide"].hide();
|
|
||||||
me["ExitLLine"].hide();
|
|
||||||
me["ExitLLbl"].hide();
|
|
||||||
me["ExitRSlide"].hide();
|
|
||||||
me["ExitRLine"].hide();
|
|
||||||
me["ExitRLbl"].hide();
|
|
||||||
me["Cabin1LeftSlide"].hide();
|
|
||||||
me["Cabin1RightSlide"].hide();
|
|
||||||
me["Cabin4LeftSlide"].hide();
|
|
||||||
me["Cabin4RightSlide"].hide();
|
|
||||||
me["Cabin2Left"].hide();
|
|
||||||
me["Cabin2LeftLine"].hide();
|
|
||||||
me["Cabin2LeftLbl"].hide();
|
|
||||||
me["Cabin2Right"].hide();
|
|
||||||
me["Cabin2RightLine"].hide();
|
|
||||||
me["Cabin2RightLbl"].hide();
|
|
||||||
me["Cabin3Left"].hide();
|
|
||||||
me["Cabin3LeftLine"].hide();
|
|
||||||
me["Cabin3LeftLbl"].hide();
|
|
||||||
me["Cabin3Right"].hide();
|
|
||||||
me["Cabin3RightLine"].hide();
|
|
||||||
me["Cabin3RightLbl"].hide();
|
|
||||||
|
|
||||||
me.updateBottomStatus();
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
var canvas_lowerECAM_elec = {
|
var canvas_lowerECAM_elec = {
|
||||||
new: func(canvas_group, file) {
|
new: func(canvas_group, file) {
|
||||||
var m = {parents: [canvas_lowerECAM_elec, canvas_lowerECAM_base]};
|
var m = {parents: [canvas_lowerECAM_elec, canvas_lowerECAM_base]};
|
||||||
|
@ -2647,72 +2463,3 @@ var canvas_lowerECAM_hyd = {
|
||||||
me.updateBottomStatus();
|
me.updateBottomStatus();
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
if (fbw.FBW.Failures.spoilerr1.getValue() or green_psi < 1500) {
|
|
||||||
me["spoiler1Rex"].setColor(0.7333,0.3803,0);
|
|
||||||
me["spoiler1Rrt"].setColor(0.7333,0.3803,0);
|
|
||||||
if (spoiler_R1.getValue() < 1.5) {
|
|
||||||
me["spoiler1Rf"].show();
|
|
||||||
} else {
|
|
||||||
me["spoiler1Rf"].hide();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
me["spoiler1Rex"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler1Rrt"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler1Rf"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fbw.FBW.Failures.spoilerr2.getValue() or yellow_psi < 1500) {
|
|
||||||
me["spoiler2Rex"].setColor(0.7333,0.3803,0);
|
|
||||||
me["spoiler2Rrt"].setColor(0.7333,0.3803,0);
|
|
||||||
if (spoiler_R2.getValue() < 1.5) {
|
|
||||||
me["spoiler2Rf"].show();
|
|
||||||
} else {
|
|
||||||
me["spoiler2Rf"].hide();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
me["spoiler2Rex"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler2Rrt"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler2Rf"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fbw.FBW.Failures.spoilerr3.getValue() or blue_psi < 1500) {
|
|
||||||
me["spoiler3Rex"].setColor(0.7333,0.3803,0);
|
|
||||||
me["spoiler3Rrt"].setColor(0.7333,0.3803,0);
|
|
||||||
if (spoiler_R3.getValue() < 1.5) {
|
|
||||||
me["spoiler3Rf"].show();
|
|
||||||
} else {
|
|
||||||
me["spoiler3Rf"].hide();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
me["spoiler3Rex"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler3Rrt"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler3Rf"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fbw.FBW.Failures.spoilerr4.getValue() or yellow_psi < 1500) {
|
|
||||||
me["spoiler4Rex"].setColor(0.7333,0.3803,0);
|
|
||||||
me["spoiler4Rrt"].setColor(0.7333,0.3803,0);
|
|
||||||
if (spoiler_R4.getValue() < 1.5) {
|
|
||||||
me["spoiler4Rf"].show();
|
|
||||||
} else {
|
|
||||||
me["spoiler4Rf"].hide();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
me["spoiler4Rex"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler4Rrt"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler4Rf"].hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fbw.FBW.Failures.spoilerr5.getValue() or green_psi < 1500) {
|
|
||||||
me["spoiler5Rex"].setColor(0.7333,0.3803,0);
|
|
||||||
me["spoiler5Rrt"].setColor(0.7333,0.3803,0);
|
|
||||||
if (spoiler_R5.getValue() < 1.5) {
|
|
||||||
me["spoiler5Rf"].show();
|
|
||||||
} else {
|
|
||||||
me["spoiler5Rf"].hide();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
me["spoiler5Rex"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler5Rrt"].setColor(0.0509,0.7529,0.2941);
|
|
||||||
me["spoiler5Rf"].hide();
|
|
||||||
}
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
viewBox="0 0 1024 1024"
|
viewBox="0 0 1024 1024"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg2"
|
id="svg2"
|
||||||
inkscape:version="0.92.1 r15371"
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
sodipodi:docname="crz.svg">
|
sodipodi:docname="crz.svg">
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata375">
|
id="metadata375">
|
||||||
|
@ -37,16 +37,16 @@
|
||||||
guidetolerance="10"
|
guidetolerance="10"
|
||||||
inkscape:pageopacity="1"
|
inkscape:pageopacity="1"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:window-width="1920"
|
inkscape:window-width="1366"
|
||||||
inkscape:window-height="1047"
|
inkscape:window-height="705"
|
||||||
id="namedview371"
|
id="namedview371"
|
||||||
showgrid="true"
|
showgrid="true"
|
||||||
inkscape:zoom="0.5"
|
inkscape:zoom="0.35355339"
|
||||||
inkscape:cx="703.8872"
|
inkscape:cx="242.38307"
|
||||||
inkscape:cy="827.31856"
|
inkscape:cy="680.25272"
|
||||||
inkscape:window-x="3840"
|
inkscape:window-x="-8"
|
||||||
inkscape:window-y="33"
|
inkscape:window-y="-8"
|
||||||
inkscape:window-maximized="0"
|
inkscape:window-maximized="1"
|
||||||
inkscape:current-layer="svg2"
|
inkscape:current-layer="svg2"
|
||||||
inkscape:snap-nodes="false"
|
inkscape:snap-nodes="false"
|
||||||
inkscape:snap-global="false"
|
inkscape:snap-global="false"
|
||||||
|
@ -298,13 +298,13 @@
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="555.73187"
|
x="543.46399"
|
||||||
y="220.23506"
|
y="220.23506"
|
||||||
id="FUsed"
|
id="FUsed"
|
||||||
inkscape:label="#text5149"><tspan
|
inkscape:label="#text5149"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan4506"
|
id="tspan4506"
|
||||||
x="555.73187"
|
x="543.46399"
|
||||||
y="220.23506"
|
y="220.23506"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b">400</tspan></text>
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b">400</tspan></text>
|
||||||
<text
|
<text
|
||||||
|
@ -543,7 +543,7 @@
|
||||||
d="M 642.63812,444.15624 H 601.42434"
|
d="M 642.63812,444.15624 H 601.42434"
|
||||||
style="fill:none;stroke:#4d4d4d;stroke-width:2.68409395;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
style="fill:none;stroke:#4d4d4d;stroke-width:2.68409395;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<text
|
<text
|
||||||
id="text3907-0"
|
id="OilUnit"
|
||||||
y="298.28555"
|
y="298.28555"
|
||||||
x="549.48846"
|
x="549.48846"
|
||||||
style="font-style:normal;font-weight:normal;font-size:12px;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;font-size:12px;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
@ -629,7 +629,7 @@
|
||||||
y="416.89258"
|
y="416.89258"
|
||||||
x="340.44434"
|
x="340.44434"
|
||||||
id="tspan3905-8-0"
|
id="tspan3905-8-0"
|
||||||
sodipodi:role="line">0.0</tspan></text>
|
sodipodi:role="line">0.2</tspan></text>
|
||||||
<text
|
<text
|
||||||
inkscape:label="#text5149"
|
inkscape:label="#text5149"
|
||||||
id="VIB2N1"
|
id="VIB2N1"
|
||||||
|
@ -641,7 +641,7 @@
|
||||||
y="419.89258"
|
y="419.89258"
|
||||||
x="745.04004"
|
x="745.04004"
|
||||||
id="tspan3905-8-0-3"
|
id="tspan3905-8-0-3"
|
||||||
sodipodi:role="line">0.0</tspan></text>
|
sodipodi:role="line">0.3</tspan></text>
|
||||||
<text
|
<text
|
||||||
inkscape:label="#text5149"
|
inkscape:label="#text5149"
|
||||||
id="VIB1N2"
|
id="VIB1N2"
|
||||||
|
@ -653,7 +653,7 @@
|
||||||
y="464.89258"
|
y="464.89258"
|
||||||
x="340.04004"
|
x="340.04004"
|
||||||
id="tspan3905-8-0-5"
|
id="tspan3905-8-0-5"
|
||||||
sodipodi:role="line">0.0</tspan></text>
|
sodipodi:role="line">0.1</tspan></text>
|
||||||
<text
|
<text
|
||||||
inkscape:label="#text5149"
|
inkscape:label="#text5149"
|
||||||
id="VIB2N2"
|
id="VIB2N2"
|
||||||
|
@ -665,7 +665,7 @@
|
||||||
y="460.39258"
|
y="460.39258"
|
||||||
x="742.04004"
|
x="742.04004"
|
||||||
id="tspan3905-8-0-5-2"
|
id="tspan3905-8-0-5-2"
|
||||||
sodipodi:role="line">0.0</tspan></text>
|
sodipodi:role="line">0.2</tspan></text>
|
||||||
<text
|
<text
|
||||||
inkscape:label="#text5149"
|
inkscape:label="#text5149"
|
||||||
id="CABALT"
|
id="CABALT"
|
||||||
|
|
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
|
@ -12,7 +12,7 @@
|
||||||
viewBox="0 0 1024 1024"
|
viewBox="0 0 1024 1024"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg2"
|
id="svg2"
|
||||||
inkscape:version="0.91 r13725"
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
sodipodi:docname="door.svg">
|
sodipodi:docname="door.svg">
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata375">
|
id="metadata375">
|
||||||
|
@ -37,14 +37,14 @@
|
||||||
guidetolerance="10"
|
guidetolerance="10"
|
||||||
inkscape:pageopacity="1"
|
inkscape:pageopacity="1"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:window-width="1920"
|
inkscape:window-width="1366"
|
||||||
inkscape:window-height="1030"
|
inkscape:window-height="705"
|
||||||
id="namedview371"
|
id="namedview371"
|
||||||
showgrid="true"
|
showgrid="true"
|
||||||
inkscape:zoom="0.7521195"
|
inkscape:zoom="0.35355339"
|
||||||
inkscape:cx="944.15154"
|
inkscape:cx="361.49345"
|
||||||
inkscape:cy="187.23728"
|
inkscape:cy="1842.4796"
|
||||||
inkscape:window-x="1592"
|
inkscape:window-x="-8"
|
||||||
inkscape:window-y="-8"
|
inkscape:window-y="-8"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="1"
|
||||||
inkscape:current-layer="svg2">
|
inkscape:current-layer="svg2">
|
||||||
|
@ -81,8 +81,7 @@
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="500.75214"
|
x="500.75214"
|
||||||
y="977.31793"
|
y="977.31793"
|
||||||
id="text6232"
|
id="text6232"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan3726-1-4-5-7"
|
id="tspan3726-1-4-5-7"
|
||||||
x="500.75214"
|
x="500.75214"
|
||||||
|
@ -93,8 +92,7 @@
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="254.86758"
|
x="254.86758"
|
||||||
y="938.9859"
|
y="938.9859"
|
||||||
id="text6233"
|
id="text6233"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan3726-1-4-5-3"
|
id="tspan3726-1-4-5-3"
|
||||||
x="254.86758"
|
x="254.86758"
|
||||||
|
@ -105,8 +103,7 @@
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="940.17981"
|
x="940.17981"
|
||||||
y="939.82428"
|
y="939.82428"
|
||||||
id="GW-weight-unit"
|
id="GW-weight-unit"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan3726-1-4-5-7-7"
|
id="tspan3726-1-4-5-7-7"
|
||||||
x="940.17981"
|
x="940.17981"
|
||||||
|
@ -117,8 +114,7 @@
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="695.24951"
|
x="695.24951"
|
||||||
y="939.8045"
|
y="939.8045"
|
||||||
id="text3912"
|
id="text3912"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan3914"
|
id="tspan3914"
|
||||||
x="695.24951"
|
x="695.24951"
|
||||||
|
@ -129,8 +125,7 @@
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="48.73233"
|
x="48.73233"
|
||||||
y="939.2984"
|
y="939.2984"
|
||||||
id="text6235"
|
id="text6235"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan3914-9"
|
id="tspan3914-9"
|
||||||
x="48.73233"
|
x="48.73233"
|
||||||
|
@ -141,8 +136,7 @@
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="47.952412"
|
x="47.952412"
|
||||||
y="975.40332"
|
y="975.40332"
|
||||||
id="text6236"
|
id="text6236"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan3914-9-4"
|
id="tspan3914-9-4"
|
||||||
x="47.952412"
|
x="47.952412"
|
||||||
|
@ -154,8 +148,7 @@
|
||||||
x="212.32626"
|
x="212.32626"
|
||||||
y="938.96637"
|
y="938.96637"
|
||||||
id="TAT"
|
id="TAT"
|
||||||
inkscape:label="#text5149"
|
inkscape:label="#text5149"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan5151-5-7-1"
|
id="tspan5151-5-7-1"
|
||||||
x="212.32626"
|
x="212.32626"
|
||||||
|
@ -167,8 +160,7 @@
|
||||||
x="212.3264"
|
x="212.3264"
|
||||||
y="975.40363"
|
y="975.40363"
|
||||||
id="SAT"
|
id="SAT"
|
||||||
inkscape:label="#text5149"
|
inkscape:label="#text5149"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan5151-5-7-1-0"
|
id="tspan5151-5-7-1-0"
|
||||||
x="212.3264"
|
x="212.3264"
|
||||||
|
@ -180,15 +172,13 @@
|
||||||
x="925.0899"
|
x="925.0899"
|
||||||
y="939.78522"
|
y="939.78522"
|
||||||
id="GW"
|
id="GW"
|
||||||
inkscape:label="#text5149"
|
inkscape:label="#text5149"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan5151-5-7-1-9"
|
id="tspan5151-5-7-1-9"
|
||||||
x="925.0899"
|
x="925.0899"
|
||||||
y="939.78522"
|
y="939.78522"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b">120000</tspan></text>
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b">120000</tspan></text>
|
||||||
<text
|
<text
|
||||||
sodipodi:linespacing="0%"
|
|
||||||
id="text4170"
|
id="text4170"
|
||||||
y="975.42352"
|
y="975.42352"
|
||||||
x="254.86758"
|
x="254.86758"
|
||||||
|
@ -200,7 +190,6 @@
|
||||||
id="tspan4172"
|
id="tspan4172"
|
||||||
sodipodi:role="line">°C</tspan></text>
|
sodipodi:role="line">°C</tspan></text>
|
||||||
<text
|
<text
|
||||||
sodipodi:linespacing="0%"
|
|
||||||
inkscape:label="#text5149"
|
inkscape:label="#text5149"
|
||||||
id="UTCh"
|
id="UTCh"
|
||||||
y="976.25214"
|
y="976.25214"
|
||||||
|
@ -218,8 +207,7 @@
|
||||||
x="560.88452"
|
x="560.88452"
|
||||||
y="976.25214"
|
y="976.25214"
|
||||||
id="UTCm"
|
id="UTCm"
|
||||||
inkscape:label="#text5149"
|
inkscape:label="#text5149"><tspan
|
||||||
sodipodi:linespacing="0%"><tspan
|
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan4180"
|
id="tspan4180"
|
||||||
x="560.88452"
|
x="560.88452"
|
||||||
|
@ -236,7 +224,7 @@
|
||||||
id="tspan861"
|
id="tspan861"
|
||||||
x="512.93152"
|
x="512.93152"
|
||||||
y="940.98541"
|
y="940.98541"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.99999905px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1">G.LOAD 0.6</tspan></text>
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1">G.LOAD 0.6</tspan></text>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
@ -343,7 +331,7 @@
|
||||||
sodipodi:nodetypes="ccccccccc" />
|
sodipodi:nodetypes="ccccccccc" />
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
x="436.25317"
|
x="436.25317"
|
||||||
y="279.40991"
|
y="279.40991"
|
||||||
id="Cabin1LeftSlide"
|
id="Cabin1LeftSlide"
|
||||||
|
@ -352,7 +340,7 @@
|
||||||
id="tspan4301"
|
id="tspan4301"
|
||||||
x="436.25317"
|
x="436.25317"
|
||||||
y="279.40991"
|
y="279.40991"
|
||||||
style="font-size:32px;line-height:1.25">SLIDE</tspan></text>
|
style="font-size:32px;line-height:1.25;fill:#cecdce;fill-opacity:1;">SLIDE</tspan></text>
|
||||||
<text
|
<text
|
||||||
transform="scale(1.0058142,0.9942194)"
|
transform="scale(1.0058142,0.9942194)"
|
||||||
id="AvionicsLbl2"
|
id="AvionicsLbl2"
|
||||||
|
@ -403,7 +391,7 @@
|
||||||
id="Cabin1RightSlide"
|
id="Cabin1RightSlide"
|
||||||
y="289.65512"
|
y="289.65512"
|
||||||
x="665.71307"
|
x="665.71307"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
transform="scale(1.0269551,0.9737524)"
|
transform="scale(1.0269551,0.9737524)"
|
||||||
inkscape:label="#text4396"><tspan
|
inkscape:label="#text4396"><tspan
|
||||||
|
@ -411,7 +399,7 @@
|
||||||
x="665.71307"
|
x="665.71307"
|
||||||
id="tspan4398"
|
id="tspan4398"
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="font-size:32.86256409px;line-height:1.25">SLIDE</tspan></text>
|
style="font-size:32.86256409px;line-height:1.25;fill:#cecdce;fill-opacity:1;">SLIDE</tspan></text>
|
||||||
<path
|
<path
|
||||||
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.61183023;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.61183023;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
||||||
d="m 853.91992,336.04297 18.49805,0 z m 25.64844,0 18.49609,0 z m 23.00391,0.1543 18.49804,0 z"
|
d="m 853.91992,336.04297 18.49805,0 z m 25.64844,0 18.49609,0 z m 23.00391,0.1543 18.49804,0 z"
|
||||||
|
@ -449,77 +437,77 @@
|
||||||
<text
|
<text
|
||||||
transform="scale(1.0269551,0.9737524)"
|
transform="scale(1.0269551,0.9737524)"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
x="663.55597"
|
x="663.55597"
|
||||||
y="550.51556"
|
y="522.78827"
|
||||||
id="ExitRSlide"
|
id="ExitRSlide"
|
||||||
inkscape:label="#text4430"><tspan
|
inkscape:label="#text4430"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan4432"
|
id="tspan4432"
|
||||||
x="663.55597"
|
x="663.55597"
|
||||||
y="550.51556"
|
y="522.78827"
|
||||||
style="font-size:32.86256409px;line-height:1.25">SLIDE</tspan></text>
|
style="font-size:32.86256409px;line-height:1.25;fill:#cecdce;fill-opacity:1;">SLIDE</tspan></text>
|
||||||
<text
|
<text
|
||||||
id="ExitLSlide"
|
id="ExitLSlide"
|
||||||
y="550.51556"
|
y="522.78827"
|
||||||
x="427.7142"
|
x="427.7142"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
transform="scale(1.0269551,0.9737524)"
|
transform="scale(1.0269551,0.9737524)"
|
||||||
inkscape:label="#text4434"><tspan
|
inkscape:label="#text4434"><tspan
|
||||||
y="550.51556"
|
y="522.78827"
|
||||||
x="427.7142"
|
x="427.7142"
|
||||||
id="tspan4436"
|
id="tspan4436"
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="font-size:32.86256409px;line-height:1.25">SLIDE</tspan></text>
|
style="font-size:32.86256409px;line-height:1.25;fill:#cecdce;fill-opacity:1;">SLIDE</tspan></text>
|
||||||
<path
|
<path
|
||||||
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.61183023;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.08946419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
||||||
d="M 853.75 652.0918 L 872.24805 652.0918 L 853.75 652.0918 z M 879.39844 652.0918 L 897.89648 652.0918 L 879.39844 652.0918 z M 902.4043 652.24805 L 920.90039 652.24805 L 902.4043 652.24805 z "
|
d="m 683,497.67344 h 14.79844 z m 20.51875,0 h 14.79843 z m 18.40469,0.125 h 14.79687 z"
|
||||||
transform="scale(0.8,0.8)"
|
|
||||||
id="ExitRLine"
|
id="ExitRLine"
|
||||||
inkscape:label="#path4438" />
|
inkscape:label="#path4438"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="929.93616"
|
x="929.93616"
|
||||||
y="447.66263"
|
y="426.74124"
|
||||||
id="ExitRLbl"
|
id="ExitRLbl"
|
||||||
transform="scale(0.87172238,1.1471542)"
|
transform="scale(0.87172238,1.1471542)"
|
||||||
inkscape:label="#text4444"><tspan
|
inkscape:label="#text4444"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
x="929.93616"
|
x="929.93616"
|
||||||
y="447.66263"
|
y="426.74124"
|
||||||
id="tspan4448"
|
id="tspan4448"
|
||||||
style="font-size:27.89511681px;line-height:1.25;fill:#bb6100;fill-opacity:1">EMER</tspan><tspan
|
style="font-size:27.89511681px;line-height:1.25;fill:#bb6100;fill-opacity:1">EMER</tspan><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
x="929.93616"
|
x="929.93616"
|
||||||
y="482.53152"
|
y="461.61014"
|
||||||
style="font-size:27.89511681px;line-height:1.25;fill:#bb6100;fill-opacity:1"
|
style="font-size:27.89511681px;line-height:1.25;fill:#bb6100;fill-opacity:1"
|
||||||
id="tspan4456">EXIT</tspan></text>
|
id="tspan4456">EXIT</tspan></text>
|
||||||
<text
|
<text
|
||||||
transform="scale(0.87172238,1.1471542)"
|
transform="scale(0.87172238,1.1471542)"
|
||||||
id="ExitLLbl"
|
id="ExitLLbl"
|
||||||
y="447.98447"
|
y="427.06308"
|
||||||
x="240.60371"
|
x="240.60371"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:label="#text4458"><tspan
|
inkscape:label="#text4458"><tspan
|
||||||
style="font-size:27.89511681px;line-height:1.25;text-align:start;text-anchor:start;fill:#bb6100;fill-opacity:1"
|
style="font-size:27.89511681px;line-height:1.25;text-align:start;text-anchor:start;fill:#bb6100;fill-opacity:1"
|
||||||
id="tspan4460"
|
id="tspan4460"
|
||||||
y="447.98447"
|
y="427.06308"
|
||||||
x="240.60371"
|
x="240.60371"
|
||||||
sodipodi:role="line">EMER</tspan><tspan
|
sodipodi:role="line">EMER</tspan><tspan
|
||||||
id="tspan4462"
|
id="tspan4462"
|
||||||
style="font-size:27.89511681px;line-height:1.25;text-align:start;text-anchor:start;fill:#bb6100;fill-opacity:1"
|
style="font-size:27.89511681px;line-height:1.25;text-align:start;text-anchor:start;fill:#bb6100;fill-opacity:1"
|
||||||
y="482.85336"
|
y="461.93198"
|
||||||
x="240.60371"
|
x="240.60371"
|
||||||
sodipodi:role="line">EXIT</tspan></text>
|
sodipodi:role="line">EXIT</tspan></text>
|
||||||
<path
|
<path
|
||||||
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.61183023;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.08946419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
||||||
d="M 359.47656 652.55273 L 377.97461 652.55273 L 359.47656 652.55273 z M 385.125 652.55273 L 403.62109 652.55273 L 385.125 652.55273 z M 408.12891 652.70898 L 426.62695 652.70898 L 408.12891 652.70898 z "
|
d="m 287.58125,498.04218 h 14.79844 z m 20.51875,0 h 14.79687 z m 18.40313,0.125 h 14.79843 z"
|
||||||
transform="scale(0.8,0.8)"
|
|
||||||
id="ExitLLine"
|
id="ExitLLine"
|
||||||
inkscape:label="#path4464" />
|
inkscape:label="#path4464"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<path
|
||||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#0dc04b;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#0dc04b;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 572.97783,450.91184 -10.90875,0.0633 0.0285,29.90121 10.83876,0.0238 z"
|
d="m 572.97783,450.91184 -10.90875,0.0633 0.0285,29.90121 10.83876,0.0238 z"
|
||||||
|
@ -631,14 +619,14 @@
|
||||||
id="Cabin4LeftSlide"
|
id="Cabin4LeftSlide"
|
||||||
y="807.39655"
|
y="807.39655"
|
||||||
x="432.02954"
|
x="432.02954"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:label="#text4276"><tspan
|
inkscape:label="#text4276"><tspan
|
||||||
y="807.39655"
|
y="807.39655"
|
||||||
x="432.02954"
|
x="432.02954"
|
||||||
id="tspan4278"
|
id="tspan4278"
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="font-size:32px;line-height:1.25">SLIDE</tspan></text>
|
style="font-size:32px;line-height:1.25;fill:#cecdce;fill-opacity:1;">SLIDE</tspan></text>
|
||||||
<path
|
<path
|
||||||
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.08946419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.08946419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
||||||
d="m 321.88282,794.0375 14.79843,0 z m -37.4,0.14219 14.79843,0 z m 18.40468,0.125 14.79688,0 z"
|
d="m 321.88282,794.0375 14.79843,0 z m -37.4,0.14219 14.79843,0 z m 18.40468,0.125 14.79688,0 z"
|
||||||
|
@ -662,7 +650,7 @@
|
||||||
<text
|
<text
|
||||||
transform="scale(1.0269551,0.9737524)"
|
transform="scale(1.0269551,0.9737524)"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
x="666.375"
|
x="666.375"
|
||||||
y="829.13342"
|
y="829.13342"
|
||||||
id="Cabin4RightSlide"
|
id="Cabin4RightSlide"
|
||||||
|
@ -671,7 +659,7 @@
|
||||||
id="tspan4304"
|
id="tspan4304"
|
||||||
x="666.375"
|
x="666.375"
|
||||||
y="829.13342"
|
y="829.13342"
|
||||||
style="font-size:32.86256409px;line-height:1.25">SLIDE</tspan></text>
|
style="font-size:32.86256409px;line-height:1.25;fill:#cecdce;fill-opacity:1;">SLIDE</tspan></text>
|
||||||
<path
|
<path
|
||||||
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.08946419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
style="fill:#bb6100;fill-opacity:1;fill-rule:evenodd;stroke:#bb6100;stroke-width:2.08946419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.67999983;stroke-opacity:1"
|
||||||
d="m 684.49531,794.17031 14.79687,0 z m 20.51719,0 14.79844,0 z m 18.40468,0.125 14.79844,0 z"
|
d="m 684.49531,794.17031 14.79687,0 z m 20.51719,0 14.79844,0 z m 18.40468,0.125 14.79844,0 z"
|
||||||
|
@ -839,80 +827,82 @@
|
||||||
sodipodi:nodetypes="ccccccccc" />
|
sodipodi:nodetypes="ccccccccc" />
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.04751396px;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:2.50395942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:2.50395942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
x="752.48254"
|
x="852.17371"
|
||||||
y="106.23167"
|
y="64.937149"
|
||||||
id="DOOROXY-OxyIndicator"
|
id="DOOROXY-OxyIndicator"
|
||||||
inkscape:label="#text3714"
|
inkscape:label="#text3714"
|
||||||
transform="scale(0.90024385,1.1108101)"><tspan
|
transform="scale(0.90024388,1.1108101)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan4627"
|
id="tspan4627"
|
||||||
x="752.48254"
|
x="852.17371"
|
||||||
y="106.23167"
|
y="64.937149"
|
||||||
style="stroke-width:2.50395942px;fill:#0dc04b;fill-opacity:1;">OXY</tspan></text>
|
style="font-size:30.04751396px;line-height:0;fill:#cecdce;fill-opacity:1;stroke-width:2.50395942px;">CKPT OXY</tspan></text>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.04800034px;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:2.50395942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:2.50395942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="757.76752"
|
x="799.85938"
|
||||||
y="141.4857"
|
y="133.49768"
|
||||||
id="DOOROXY-REGUL-LO-PR"
|
id="DOOROXY-REGUL-LO-PR"
|
||||||
inkscape:label="#text3714"
|
inkscape:label="#text3714"
|
||||||
transform="scale(0.90024388,1.1108101)"><tspan
|
transform="scale(0.90024388,1.1108101)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan4647"
|
id="tspan4647"
|
||||||
x="757.76752"
|
x="799.85938"
|
||||||
y="141.4857">REGUL LO PR</tspan></text>
|
y="133.49768"
|
||||||
|
style="font-size:30.04800034px;line-height:0">REGUL LO PR</tspan></text>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-weight:normal;font-size:45.96218491px;line-height:1.25;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1.14905465;"
|
style="font-style:normal;font-weight:normal;font-size:32px;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1.14905465;text-anchor:end;text-align:end;"
|
||||||
x="820.46686"
|
x="918.81921"
|
||||||
y="106.9913"
|
y="103.75028"
|
||||||
id="DOOROXY-PR"
|
id="DOOROXY-PR"
|
||||||
transform="scale(0.91130679,1.0973253)"
|
transform="scale(0.91130679,1.0973253)"
|
||||||
inkscape:label="#text4651"><tspan
|
inkscape:label="#text4651"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
x="820.46686"
|
x="842.82898"
|
||||||
y="106.9913"
|
y="103.75028"
|
||||||
style="stroke-width:1.14905465;fill:#0dc04b;fill-opacity:1;"
|
style="font-size:36px;line-height:1.25;fill:#0dc04b;fill-opacity:1;stroke-width:1.14905465;text-anchor:end;text-align:end;"
|
||||||
id="tspan4653">1300</tspan></text>
|
id="tspan4653">1300</tspan></text>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.04800034px;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:2.50395942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:2.50395942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="974.64819"
|
x="953.60229"
|
||||||
y="105.6836"
|
y="100.29736"
|
||||||
id="DOOROXY-text-psi"
|
id="DOOROXY-text-psi"
|
||||||
inkscape:label="#text3714"
|
inkscape:label="#text3714"
|
||||||
transform="scale(0.90024388,1.1108101)"><tspan
|
transform="scale(0.90024388,1.1108101)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan4675"
|
id="tspan4675"
|
||||||
x="974.64819"
|
x="953.60229"
|
||||||
y="105.6836">PSI</tspan></text>
|
y="100.29736"
|
||||||
|
style="font-size:30px;line-height:0">PSI</tspan></text>
|
||||||
<g
|
<g
|
||||||
id="DOOR-VS-Container"
|
id="DOOR-VS-Container"
|
||||||
inkscape:label="#g4751"
|
inkscape:label="#g4751"
|
||||||
transform="translate(3.9697981,11.253005)">
|
transform="translate(12.944435,6.250187)">
|
||||||
<text
|
<text
|
||||||
id="text4619"
|
id="text4619"
|
||||||
y="182.46194"
|
y="180.12952"
|
||||||
x="679.00989"
|
x="679.00989"
|
||||||
style="font-style:normal;font-weight:normal;font-size:30px;line-height:1.25;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:0.75"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:0.75"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
id="tspan4621"
|
id="tspan4621"
|
||||||
style="fill:#cecdce;fill-opacity:1;stroke-width:0.75"
|
style="font-size:30px;line-height:1.25;fill:#cecdce;fill-opacity:1;stroke-width:0.75"
|
||||||
y="182.46194"
|
y="180.12952"
|
||||||
x="679.00989"
|
x="679.00989"
|
||||||
sodipodi:role="line">V/S</tspan></text>
|
sodipodi:role="line">V/S</tspan></text>
|
||||||
<text
|
<text
|
||||||
inkscape:label="#text4619-2"
|
inkscape:label="#text4619-2"
|
||||||
transform="scale(1.0181905,0.98213449)"
|
transform="scale(1.0181905,0.98213449)"
|
||||||
id="DOOR-VS"
|
id="DOOR-VS"
|
||||||
y="183.64415"
|
y="183.35246"
|
||||||
x="769.71179"
|
x="752.12054"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:23.16251373px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.57906288"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.57906288"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="stroke-width:0.57906288"
|
style="font-size:36px;line-height:1.25;stroke-width:0.57906288"
|
||||||
y="183.64415"
|
y="183.35246"
|
||||||
x="769.71179"
|
x="752.12054"
|
||||||
id="tspan4643"
|
id="tspan4643"
|
||||||
sodipodi:role="line">1650</tspan></text>
|
sodipodi:role="line">1650</tspan></text>
|
||||||
<text
|
<text
|
||||||
|
@ -920,44 +910,18 @@
|
||||||
id="text4619-2-6"
|
id="text4619-2-6"
|
||||||
y="177.27403"
|
y="177.27403"
|
||||||
x="869.73895"
|
x="869.73895"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.38916969px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:0.55971754"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:0.55971754"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="stroke-width:0.55971754"
|
style="font-size:29.99999809px;line-height:1.25;stroke-width:0.55971754"
|
||||||
y="177.27403"
|
y="177.27403"
|
||||||
x="869.73895"
|
x="869.73895"
|
||||||
id="tspan4663"
|
id="tspan4663"
|
||||||
sodipodi:role="line">FT/MIN</tspan></text>
|
sodipodi:role="line">FT/MIN</tspan></text>
|
||||||
<g
|
<g
|
||||||
id="DOOR-VS-Arrow-DN">
|
id="DOOR-VS-Arrow-DN" />
|
||||||
<path
|
|
||||||
style="fill:none;fill-rule:evenodd;stroke:#0dc04b;stroke-width:1.44767237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
||||||
d="m 731.03018,172.74699 39.64077,0.003"
|
|
||||||
id="path4257-2"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
style="fill:#0dc04b;fill-opacity:1;stroke:#0dc04b;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
d="m 770.62688,172.50761 3.32903,4.16556 6.04407,-1.41023 3.492,26.73705 -16.992,-21.75 5.77627,-3 -2.82034,-3.99238 z"
|
|
||||||
id="path-1"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="cccccccc"
|
|
||||||
inkscape:label="#path4712" />
|
|
||||||
</g>
|
|
||||||
<g
|
<g
|
||||||
inkscape:label="#DOOR-VS-Arrow-DN-3"
|
inkscape:label="#DOOR-VS-Arrow-DN-3"
|
||||||
transform="matrix(1,0,0,-1,0.04406707,358.0076)"
|
transform="matrix(1,0,0,-1,0.04406707,358.0076)"
|
||||||
id="DOOR-VS-Arrow-UP">
|
id="DOOR-VS-Arrow-UP" />
|
||||||
<path
|
|
||||||
style="fill:none;fill-rule:evenodd;stroke:#0dc04b;stroke-width:1.44767237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
||||||
d="m 731.03018,172.74699 39.64077,0.003"
|
|
||||||
id="path4257-2-9"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
style="fill:#0dc04b;fill-opacity:1;stroke:#0dc04b;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
d="m 770.62688,172.50761 3.32903,4.16556 6.04407,-1.41023 3.492,26.73705 -16.992,-21.75 5.77627,-3 -2.82034,-3.99238 z"
|
|
||||||
id="path-1-0"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="cccccccc"
|
|
||||||
inkscape:label="#path4712" />
|
|
||||||
</g>
|
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 51 KiB |
Loading…
Add table
Reference in a new issue