A3XX: Add overspeed to tape in PFD
This commit is contained in:
parent
5c2af96b16
commit
66dbaa495f
4 changed files with 747 additions and 50 deletions
|
@ -15,6 +15,7 @@ var elapsedtime = 0;
|
|||
var ASI = 0;
|
||||
var ASItrgt = 0;
|
||||
var ASItrgtdiff = 0;
|
||||
var ASImax = 0;
|
||||
var alt = 0;
|
||||
var altTens = 0;
|
||||
var state1 = getprop("/systems/thrust/state1");
|
||||
|
@ -122,7 +123,7 @@ var canvas_PFD_base = {
|
|||
getKeys: func() {
|
||||
return ["FMA_man","FMA_manmode","FMA_flxtemp","FMA_thrust","FMA_lvrclb","FMA_pitch","FMA_pitcharm","FMA_pitcharm2","FMA_roll","FMA_rollarm","FMA_combined","FMA_ctr_msg","FMA_catmode","FMA_cattype","FMA_nodh","FMA_dh","FMA_dhn","FMA_ap","FMA_fd",
|
||||
"FMA_athr","FMA_man_box","FMA_flx_box","FMA_thrust_box","FMA_pitch_box","FMA_pitcharm_box","FMA_roll_box","FMA_rollarm_box","FMA_combined_box","FMA_catmode_box","FMA_cattype_box","FMA_cat_box","FMA_dh_box","FMA_ap_box","FMA_fd_box","FMA_athr_box",
|
||||
"FMA_Middle1","FMA_Middle2","ASI_scale","ASI_target","ASI_mach","ASI_mach_decimal","ASI_ten_sec","ASI_digit_UP","ASI_digit_DN","ASI_decimal_UP","ASI_decimal_DN","ASI_index","ASI_error","ASI_group","ASI_frame","AI_center","AI_bank","AI_bank_lim",
|
||||
"FMA_Middle1","FMA_Middle2","ASI_max","ASI_scale","ASI_target","ASI_mach","ASI_mach_decimal","ASI_ten_sec","ASI_digit_UP","ASI_digit_DN","ASI_decimal_UP","ASI_decimal_DN","ASI_index","ASI_error","ASI_group","ASI_frame","AI_center","AI_bank","AI_bank_lim",
|
||||
"AI_slipskid","AI_horizon","AI_horizon_ground","AI_horizon_sky","AI_stick","AI_stick_pos","AI_heading","AI_agl_g","AI_agl","AI_error","AI_group","FD_roll","FD_pitch","ALT_scale","ALT_target","ALT_target_digit","ALT_one","ALT_two","ALT_three","ALT_four",
|
||||
"ALT_five","ALT_digits","ALT_tens","ALT_digit_UP","ALT_digit_DN","ALT_error","ALT_group","ALT_group2","ALT_frame","VS_pointer","VS_box","VS_digit","VS_error","VS_group","QNH","QNH_setting","QNH_std","QNH_box","LOC_pointer","LOC_scale","GS_scale",
|
||||
"GS_pointer","CRS_pointer","HDG_target","HDG_scale","HDG_one","HDG_two","HDG_three","HDG_four","HDG_five","HDG_six","HDG_seven","HDG_digit_L","HDG_digit_R","HDG_error","HDG_group","HDG_frame","TRK_pointer"];
|
||||
|
@ -414,7 +415,17 @@ var canvas_PFD_base = {
|
|||
} else {
|
||||
ASI = getprop("/instrumentation/airspeed-indicator/indicated-speed-kt") - 30;
|
||||
}
|
||||
|
||||
if (getprop("/FMGC/internal/maxspeed") <= 30) {
|
||||
ASImax = 0 - ASI;
|
||||
} else if (getprop("/FMGC/internal/maxspeed") >= 420) {
|
||||
ASImax = 390 - ASI;
|
||||
} else {
|
||||
ASImax = getprop("/FMGC/internal/maxspeed") - 30 - ASI;
|
||||
}
|
||||
|
||||
me["ASI_scale"].setTranslation(0, ASI * 6.6);
|
||||
me["ASI_max"].setTranslation(0, ASImax * -6.6);
|
||||
|
||||
if (getprop("/instrumentation/airspeed-indicator/indicated-mach") >= 0.5) {
|
||||
me["ASI_mach_decimal"].show();
|
||||
|
@ -501,7 +512,7 @@ var canvas_PFD_base = {
|
|||
me.AI_horizon_ground_rot.setRotation(-roll * D2R, me["AI_center"].getCenter());
|
||||
me.AI_horizon_sky_rot.setRotation(-roll * D2R, me["AI_center"].getCenter());
|
||||
|
||||
me["AI_slipskid"].setTranslation(getprop("/instrumentation/slip-skid-ball/indicated-slip-skid") * -15, 0);
|
||||
me["AI_slipskid"].setTranslation(math.clamp(getprop("/instrumentation/slip-skid-ball/indicated-slip-skid"), -7, 7) * -15, 0);
|
||||
me["AI_bank"].setRotation(-roll * D2R);
|
||||
|
||||
if (getprop("/it-fbw/law") == 0) {
|
||||
|
|
|
@ -41,9 +41,9 @@
|
|||
inkscape:window-height="1030"
|
||||
id="namedview371"
|
||||
showgrid="false"
|
||||
inkscape:zoom="90.509668"
|
||||
inkscape:cx="1071.3757"
|
||||
inkscape:cy="598.6345"
|
||||
inkscape:zoom="2.8284273"
|
||||
inkscape:cx="324.67088"
|
||||
inkscape:cy="851.22941"
|
||||
inkscape:window-x="1592"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
|
@ -1603,6 +1603,14 @@
|
|||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.46000001;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27696717;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="ASI_max_clip"
|
||||
width="21.356052"
|
||||
height="552.00073"
|
||||
x="124.90075"
|
||||
y="237.03366"
|
||||
inkscape:label="#rect9211" />
|
||||
<rect
|
||||
inkscape:label="#rect9211"
|
||||
y="237.03366"
|
||||
|
@ -2424,22 +2432,6 @@
|
|||
width="33.211578"
|
||||
id="GS_pointer"
|
||||
style="fill:none;fill-opacity:1;stroke:#b055be;stroke-width:4.03498697;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
id="ASI_frame"
|
||||
inkscape:label="#g4757">
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect919"
|
||||
d="m 13.168124,235.4451 141.300716,0"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
d="m 13.167811,790.62913 141.300719,0"
|
||||
id="path922"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="ALT_group2"
|
||||
inkscape:label="#g4828">
|
||||
|
@ -3229,6 +3221,690 @@
|
|||
<g
|
||||
id="ASI_group"
|
||||
inkscape:label="#g4784">
|
||||
<g
|
||||
id="ASI_max"
|
||||
inkscape:label="#g4996"
|
||||
transform="translate(427.21679,200.65901)">
|
||||
<rect
|
||||
y="290.33853"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4786"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4788"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="270.33838" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4794"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="246.33833" />
|
||||
<rect
|
||||
y="226.33818"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4797"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4799"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="202.33833" />
|
||||
<rect
|
||||
y="182.33818"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4801"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="158.33813"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4803"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4805"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="138.33798" />
|
||||
<rect
|
||||
y="114.33834"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4807"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4809"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="94.338188" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4811"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="70.338142" />
|
||||
<rect
|
||||
y="50.337986"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4813"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4815"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="26.338337" />
|
||||
<rect
|
||||
y="6.3381853"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4817"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-17.661861"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4819"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4821"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-37.662018" />
|
||||
<rect
|
||||
y="-61.661663"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4823"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4825"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-81.661812" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4827"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-105.66186" />
|
||||
<rect
|
||||
y="-125.66202"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4829"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4831"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-149.66167" />
|
||||
<rect
|
||||
y="-169.6618"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4833"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-193.66185"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4835"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4837"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-213.66202" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4848"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-237.66246" />
|
||||
<rect
|
||||
y="-257.66263"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4851"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-281.66266"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4853"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4855"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-301.66281" />
|
||||
<rect
|
||||
y="-325.66266"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4857"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4859"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-345.66281" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4861"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-369.66287" />
|
||||
<rect
|
||||
y="-389.66302"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4863"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4865"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-413.66266" />
|
||||
<rect
|
||||
y="-433.66281"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4867"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-457.66284"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4869"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4871"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-477.66299" />
|
||||
<rect
|
||||
y="-501.66266"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4873"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4875"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-521.66278" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4877"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-545.66284" />
|
||||
<rect
|
||||
y="-565.66302"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4879"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4881"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-589.66266" />
|
||||
<rect
|
||||
y="-609.66278"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4883"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-633.66284"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4885"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4887"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-653.66302" />
|
||||
<rect
|
||||
y="-677.66266"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4889"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4891"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-697.66278" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4893"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-721.66284" />
|
||||
<rect
|
||||
y="-741.66302"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4895"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-765.66327"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4897"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4899"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-785.66345" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4901"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-809.66345" />
|
||||
<rect
|
||||
y="-829.66364"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4903"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4905"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-853.66345" />
|
||||
<rect
|
||||
y="-873.66364"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4907"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-897.6637"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4909"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4911"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-917.66382" />
|
||||
<rect
|
||||
y="-941.66345"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4913"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4915"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-961.66364" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4917"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-985.66364" />
|
||||
<rect
|
||||
y="-1005.6638"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4919"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4921"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-1029.6635" />
|
||||
<rect
|
||||
y="-1049.6636"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4923"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-1073.6637"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4926"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4928"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-1093.6638" />
|
||||
<rect
|
||||
y="-1117.6635"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4930"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4932"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-1137.6636" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4934"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-1161.6637" />
|
||||
<rect
|
||||
y="-1181.6638"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4936"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4938"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-1205.6635" />
|
||||
<rect
|
||||
y="-1225.6636"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4940"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-1249.6637"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4942"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4944"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-1269.6638" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4946"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-1293.6641" />
|
||||
<rect
|
||||
y="-1313.6642"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4948"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-1337.6642"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4950"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4952"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-1357.6644" />
|
||||
<rect
|
||||
y="-1381.6642"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4954"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4956"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-1401.6644" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4958"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-1425.6644" />
|
||||
<rect
|
||||
y="-1445.6646"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4960"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4962"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-1469.6642" />
|
||||
<rect
|
||||
y="-1489.6644"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4964"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-1513.6644"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4966"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4968"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-1533.6646" />
|
||||
<rect
|
||||
y="-1557.6642"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4970"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4972"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-1577.6643" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4974"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-1601.6644" />
|
||||
<rect
|
||||
y="-1621.6646"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4976"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4978"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-1645.6642" />
|
||||
<rect
|
||||
y="-1665.6643"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4980"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-1689.6644"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4982"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4984"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-1709.6646" />
|
||||
<rect
|
||||
y="-1733.6642"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4986"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4988"
|
||||
width="18.482372"
|
||||
height="18.800058"
|
||||
x="-300.81363"
|
||||
y="-1753.6643" />
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="rect4990"
|
||||
width="18.482525"
|
||||
height="22.800125"
|
||||
x="-300.81439"
|
||||
y="-1777.6644" />
|
||||
<rect
|
||||
y="-1797.6646"
|
||||
x="-300.81363"
|
||||
height="18.800058"
|
||||
width="18.482372"
|
||||
id="rect4992"
|
||||
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19994247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<rect
|
||||
y="-1821.6649"
|
||||
x="-300.81439"
|
||||
height="22.800125"
|
||||
width="18.482525"
|
||||
id="rect4994"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.19987428;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0.69023445,0)"
|
||||
inkscape:label="#g3847"
|
||||
|
@ -3908,6 +4584,22 @@
|
|||
d="m 124.45518,236.9723 0,552.07397"
|
||||
style="fill:none;fill-opacity:1;stroke:#ff0000;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
</g>
|
||||
<g
|
||||
id="ASI_frame"
|
||||
inkscape:label="#g4757">
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect919"
|
||||
d="m 13.168124,235.4451 141.300716,0"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
d="m 13.167811,790.62913 141.300719,0"
|
||||
id="path922"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<text
|
||||
inkscape:label="#text975"
|
||||
transform="scale(0.95383278,1.0484018)"
|
||||
|
|
Before Width: | Height: | Size: 230 KiB After Width: | Height: | Size: 266 KiB |
|
@ -9,9 +9,9 @@
|
|||
# Init Functions #
|
||||
##################
|
||||
|
||||
setprop("/FMGC/internal/overspeed", 338);
|
||||
setprop("/FMGC/internal/minspeed", 204);
|
||||
setprop("/FMGC/internal/alpha-prot-speed", 193);
|
||||
setprop("/FMGC/internal/maxspeed", 0);
|
||||
setprop("/FMGC/internal/minspeed", 0);
|
||||
setprop("/FMGC/internal/alpha-prot-speed", 0);
|
||||
setprop("/position/gear-agl-ft", 0);
|
||||
setprop("/FMGC/internal/mng-spd", 157);
|
||||
setprop("/FMGC/internal/mng-spd-cmd", 157);
|
||||
|
@ -97,7 +97,7 @@ setlistener("/sim/signals/fdm-initialized", func {
|
|||
var kts_sel = getprop("/it-autoflight/input/spd-kts");
|
||||
var mach_sel = getprop("/it-autoflight/input/spd-mach");
|
||||
var srsSPD = getprop("/it-autoflight/settings/togaspd");
|
||||
var overspeed = getprop("/FMGC/internal/overspeed");
|
||||
var maxspeed = getprop("/FMGC/internal/maxspeed");
|
||||
var minspeed = getprop("/FMGC/internal/minspeed");
|
||||
var mach_switchover = getprop("/FMGC/internal/mach-switchover");
|
||||
var decel = getprop("/FMGC/internal/decel");
|
||||
|
@ -122,7 +122,7 @@ setlistener("/sim/signals/fdm-initialized", func {
|
|||
var FMGCinit = func {
|
||||
setprop("/FMGC/status/to-state", 0);
|
||||
setprop("/FMGC/status/phase", "0"); # 0 is Preflight 1 is Takeoff 2 is Climb 3 is Cruise 4 is Descent 5 is Decel/Approach 6 is Go Around 7 is Done
|
||||
setprop("/FMGC/internal/overspeed", 338);
|
||||
setprop("/FMGC/internal/maxspeed", 338);
|
||||
setprop("/FMGC/internal/mng-spd", 157);
|
||||
setprop("/FMGC/internal/mng-spd-cmd", 157);
|
||||
setprop("/FMGC/internal/mng-kts-mach", 0);
|
||||
|
@ -131,7 +131,7 @@ var FMGCinit = func {
|
|||
setprop("/FMGC/internal/decel", 0);
|
||||
setprop("/FMGC/internal/loc-source", "NAV0");
|
||||
setprop("/FMGC/internal/optalt", 0);
|
||||
phasecheck.start();
|
||||
masterFMGC.start();
|
||||
various.start();
|
||||
various2.start();
|
||||
}
|
||||
|
@ -174,7 +174,7 @@ setlistener("/FMGC/internal/cruise-ft", func {
|
|||
# Flight Phase and Various #
|
||||
############################
|
||||
|
||||
var phasecheck = maketimer(0.2, func {
|
||||
var masterFMGC = maketimer(0.2, func {
|
||||
n1_left = getprop("/engines/engine[0]/n1-actual");
|
||||
n1_right = getprop("/engines/engine[1]/n1-actual");
|
||||
flaps = getprop("/controls/flight/flap-pos");
|
||||
|
@ -269,30 +269,24 @@ var phasecheck = maketimer(0.2, func {
|
|||
}
|
||||
|
||||
flap = getprop("/controls/flight/flap-pos");
|
||||
if (flap == 0) {
|
||||
setprop("/FMGC/internal/overspeed", 338);
|
||||
if (flap == 0) { # 0
|
||||
setprop("/FMGC/internal/maxspeed", 350);
|
||||
setprop("/FMGC/internal/minspeed", 202);
|
||||
setprop("/FMGC/internal/alpha-prot-speed", 187);
|
||||
} else if (flap == 1) {
|
||||
setprop("/FMGC/internal/overspeed", 216);
|
||||
} else if (flap == 1) { # 1
|
||||
setprop("/FMGC/internal/maxspeed", 230);
|
||||
setprop("/FMGC/internal/minspeed", 184);
|
||||
setprop("/FMGC/internal/alpha-prot-speed", 167);
|
||||
} else if (flap == 2) {
|
||||
setprop("/FMGC/internal/overspeed", 207);
|
||||
} else if (flap == 2) { # 1+F
|
||||
setprop("/FMGC/internal/maxspeed", 215);
|
||||
setprop("/FMGC/internal/minspeed", 171);
|
||||
setprop("/FMGC/internal/alpha-prot-speed", 154);
|
||||
} else if (flap == 3) {
|
||||
setprop("/FMGC/internal/overspeed", 189);
|
||||
} else if (flap == 3) { # 2
|
||||
setprop("/FMGC/internal/maxspeed", 200);
|
||||
setprop("/FMGC/internal/minspeed", 156);
|
||||
setprop("/FMGC/internal/alpha-prot-speed", 143);
|
||||
} else if (flap == 4) {
|
||||
setprop("/FMGC/internal/overspeed", 174);
|
||||
} else if (flap == 4) { # 3
|
||||
setprop("/FMGC/internal/maxspeed", 185);
|
||||
setprop("/FMGC/internal/minspeed", 147);
|
||||
setprop("/FMGC/internal/alpha-prot-speed", 138);
|
||||
} else if (flap == 5) {
|
||||
setprop("/FMGC/internal/overspeed", 163);
|
||||
} else if (flap == 5) { # FULL
|
||||
setprop("/FMGC/internal/maxspeed", 177);
|
||||
setprop("/FMGC/internal/minspeed", 131);
|
||||
setprop("/FMGC/internal/alpha-prot-speed", 122);
|
||||
}
|
||||
|
||||
if (gear0 == 1 and (state1 == "MCT" or state1 == "MAN THR" or state1 == "TOGA") and (state2 == "MCT" or state2 == "MAN THR" or state2 == "TOGA") and flaps < 5) {
|
||||
|
@ -466,7 +460,7 @@ var ManagedSPD = maketimer(0.25, func {
|
|||
srsSPD = getprop("/it-autoflight/settings/togaspd");
|
||||
phase = getprop("/FMGC/status/phase"); # 0 is Preflight 1 is Takeoff 2 is Climb 3 is Cruise 4 is Descent 5 is Decel/Approach 6 is Go Around 7 is Done
|
||||
flap = getprop("/controls/flight/flap-pos");
|
||||
overspeed = getprop("/FMGC/internal/overspeed");
|
||||
maxspeed = getprop("/FMGC/internal/maxspeed");
|
||||
minspeed = getprop("/FMGC/internal/minspeed");
|
||||
mach_switchover = getprop("/FMGC/internal/mach-switchover");
|
||||
decel = getprop("/FMGC/internal/decel");
|
||||
|
@ -551,8 +545,8 @@ var ManagedSPD = maketimer(0.25, func {
|
|||
|
||||
mng_spd_cmd = getprop("/FMGC/internal/mng-spd-cmd");
|
||||
|
||||
if (mng_spd_cmd > overspeed) {
|
||||
setprop("/FMGC/internal/mng-spd", overspeed);
|
||||
if (mng_spd_cmd > maxspeed) {
|
||||
setprop("/FMGC/internal/mng-spd", maxspeed);
|
||||
} else {
|
||||
setprop("/FMGC/internal/mng-spd", mng_spd_cmd);
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
4038
|
||||
4039
|
Reference in a new issue