mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-03-11 03:29:17 +01:00
OP-1438 VSI_Arc_PFD+Status Refactored PFD for best viewing on small devices / laptops. Battery panel added on left
This commit is contained in:
parent
501a59fcdc
commit
c8cd749692
@ -31,12 +31,21 @@ Item {
|
||||
property real wp_eta_m: (wp_eta > 0 ? Math.floor((wp_eta - wp_eta_h*3600)/60) : 0)
|
||||
property real wp_eta_s: (wp_eta > 0 ? Math.floor(wp_eta - wp_eta_h*3600 - wp_eta_m*60) : 0)
|
||||
|
||||
property real est_flight_time: Math.round(FlightBatteryState.EstimatedFlightTime)
|
||||
property real est_time_h: (est_flight_time > 0 ? Math.floor(est_flight_time / 3600) : 0 )
|
||||
property real est_time_m: (est_flight_time > 0 ? Math.floor((est_flight_time - est_time_h*3600)/60) : 0)
|
||||
property real est_time_s: (est_flight_time > 0 ? Math.floor(est_flight_time - est_time_h*3600 - est_time_m*60) : 0)
|
||||
|
||||
property real posEast_old
|
||||
property real posNorth_old
|
||||
property real total_distance
|
||||
property bool init_dist: false
|
||||
|
||||
property bool hide_display_rc: false
|
||||
property bool hide_display_bat: false
|
||||
|
||||
// Uninitialised, Ok, Warning, Critical, Error
|
||||
property variant batColors : ["#2c2929", "green", "orange", "red", "red"]
|
||||
|
||||
function reset_distance(){
|
||||
total_distance = 0;
|
||||
@ -63,10 +72,19 @@ Item {
|
||||
}
|
||||
|
||||
function hide_display_rcinput(){
|
||||
if (hide_display_rc == false)
|
||||
if (hide_display_rc == false && hide_display_bat == false)
|
||||
hide_display_rc = true;
|
||||
else
|
||||
hide_display_rc = false;
|
||||
battery_bg.z = -1
|
||||
}
|
||||
|
||||
function hide_display_battery(){
|
||||
if (hide_display_bat == false && hide_display_rc == false)
|
||||
hide_display_bat = true;
|
||||
else
|
||||
hide_display_bat = false;
|
||||
battery_bg.z = 10
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
@ -76,21 +94,6 @@ Item {
|
||||
width: parent.width
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: batinfo_energy
|
||||
elementName: "warning-low-energy"
|
||||
sceneSize: info.sceneSize
|
||||
Rectangle {
|
||||
anchors.fill: batinfo_energy
|
||||
border.width: 0
|
||||
// Alarm based on FlightBatteryState.EstimatedFlightTime < 120s orange, < 60s red
|
||||
color: (FlightBatteryState.EstimatedFlightTime <= 120 && FlightBatteryState.EstimatedFlightTime > 60 ? "orange" :
|
||||
(FlightBatteryState.EstimatedFlightTime <= 60 ? "red": "black"))
|
||||
|
||||
visible: FlightBatteryState.ConsumedEnergy > 0
|
||||
}
|
||||
}
|
||||
|
||||
Repeater {
|
||||
id: satNumberBar
|
||||
|
||||
@ -111,55 +114,17 @@ Item {
|
||||
elementName: "gps-mode-text"
|
||||
|
||||
Text {
|
||||
text: ["No GPS", "No Fix", "Fix2D", "Fix3D"][GPSPositionSensor.Status]
|
||||
text: ["NO GPS", "NO FIX", "FIX 2D", "FIX 3D"][GPSPositionSensor.Status]
|
||||
anchors.centerIn: parent
|
||||
font.pixelSize: Math.floor(parent.height*1.2)
|
||||
font.pixelSize: Math.floor(parent.height*1.3)
|
||||
font.family: "Arial"
|
||||
color: "white"
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "telemetry-status"
|
||||
|
||||
Text {
|
||||
text: ["Disconnected","HandshakeReq","HandshakeAck","Connected"][tele_status.toString()]
|
||||
|
||||
anchors.centerIn: parent
|
||||
font.pixelSize: Math.floor(parent.height*1.2)
|
||||
color: "white"
|
||||
}
|
||||
}
|
||||
|
||||
Repeater {
|
||||
id: txNumberBar
|
||||
|
||||
property int txRateNumber : GCSTelemetryStats.TxDataRate.toFixed()/10 // 250 max
|
||||
|
||||
model: 25
|
||||
SvgElementImage {
|
||||
property int minTxRateNumber : index+1
|
||||
elementName: "tx" + minTxRateNumber
|
||||
sceneSize: info.sceneSize
|
||||
visible: txNumberBar.txRateNumber >= minTxRateNumber && ((GCSTelemetryStats.Status ==3 && OPLinkStatus.LinkState == 4 )
|
||||
|| (GCSTelemetryStats.Status ==3 && OPLinkStatus.LinkState == 1 ))
|
||||
}
|
||||
}
|
||||
|
||||
Repeater {
|
||||
id: rxNumberBar
|
||||
|
||||
property int rxRateNumber : GCSTelemetryStats.RxDataRate.toFixed()/100 // 2500 max
|
||||
|
||||
model: 25
|
||||
SvgElementImage {
|
||||
property int minRxRateNumber : index+1
|
||||
elementName: "rx" + minRxRateNumber
|
||||
sceneSize: info.sceneSize
|
||||
visible: rxNumberBar.rxRateNumber >= minRxRateNumber && ((GCSTelemetryStats.Status ==3 && OPLinkStatus.LinkState == 4 )
|
||||
|| (GCSTelemetryStats.Status ==3 && OPLinkStatus.LinkState == 1 ))
|
||||
}
|
||||
}
|
||||
//
|
||||
// Waypoint Info
|
||||
//
|
||||
|
||||
SvgElementPositionItem {
|
||||
sceneSize: info.sceneSize
|
||||
@ -171,10 +136,13 @@ Item {
|
||||
|
||||
Text {
|
||||
text: " "+wp_heading.toFixed(1)+"°"
|
||||
|
||||
anchors.centerIn: parent
|
||||
font.pixelSize: parent.height*1.1
|
||||
color: "magenta"
|
||||
color: "cyan"
|
||||
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.5)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -188,10 +156,13 @@ Item {
|
||||
|
||||
Text {
|
||||
text: " "+wp_distance.toFixed(0)+" m"
|
||||
|
||||
anchors.centerIn: parent
|
||||
font.pixelSize: parent.height*1.1
|
||||
color: "magenta"
|
||||
color: "cyan"
|
||||
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.5)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -203,14 +174,17 @@ Item {
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
visible: OPLinkStatus.LinkState == 4 //OPLink Connected
|
||||
|
||||
MouseArea { id: total_dist_mouseArea; anchors.fill: parent; onClicked: reset_distance()}
|
||||
MouseArea { id: total_dist_mouseArea; anchors.fill: parent; cursorShape: Qt.PointingHandCursor; onClicked: reset_distance()}
|
||||
|
||||
Text {
|
||||
text: " "+total_distance.toFixed(0)+" m"
|
||||
|
||||
anchors.centerIn: parent
|
||||
font.pixelSize: parent.height*1.1
|
||||
color: "magenta"
|
||||
color: "cyan"
|
||||
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.5)
|
||||
}
|
||||
}
|
||||
|
||||
Timer {
|
||||
@ -229,10 +203,13 @@ Item {
|
||||
|
||||
Text {
|
||||
text: formatTime(wp_eta_h) + ":" + formatTime(wp_eta_m) + ":" + formatTime(wp_eta_s)
|
||||
|
||||
anchors.centerIn: parent
|
||||
font.pixelSize: parent.height*1.1
|
||||
color: "magenta"
|
||||
color: "cyan"
|
||||
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.5)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -246,10 +223,13 @@ Item {
|
||||
|
||||
Text {
|
||||
text: (WaypointActive.Index+1)+" / "+PathPlan.WaypointCount
|
||||
|
||||
anchors.centerIn: parent
|
||||
font.pixelSize: parent.height*1.1
|
||||
color: "magenta"
|
||||
color: "cyan"
|
||||
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.5)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -262,102 +242,24 @@ Item {
|
||||
visible: SystemAlarms.Alarm_PathPlan == 1
|
||||
|
||||
Text {
|
||||
text: ["Fly End Point","Fly Vector","Fly Circle Right","Fly Circle Left","Drive End Point","Drive Vector","Drive Circle Right",
|
||||
"Drive Circle Left","Fixed Attitude","Set Accessory","Land","Disarm Alarm"][PathDesired.Mode]
|
||||
|
||||
text: ["FLY END POINT","FLY VECTOR","FLY CIRCLE RIGHT","FLY CIRCLE LEFT","DRIVE END POINT","DRIVE VECTOR","DRIVE CIRCLE LEFT",
|
||||
"DRIVE CIRCLE RIGHT","FIXED ATTITUDE","SET ACCESSORY","LAND","DISARM ALARM"][PathDesired.Mode]
|
||||
anchors.centerIn: parent
|
||||
font.pixelSize: parent.height*1.1
|
||||
color: "magenta"
|
||||
}
|
||||
}
|
||||
color: "cyan"
|
||||
|
||||
SvgElementPositionItem {
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-volt-text"
|
||||
visible: FlightBatteryState.Voltage > 0
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Voltage.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.2)
|
||||
pixelSize: Math.floor(parent.height * 1.5)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-amp-text"
|
||||
visible: FlightBatteryState.Current > 0
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Current.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.2)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-milliamp-text"
|
||||
visible: FlightBatteryState.ConsumedEnergy > 0
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.ConsumedEnergy.toFixed()
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.2)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Repeater {
|
||||
id: throttleNumberBar
|
||||
|
||||
property int throttleNumber : ActuatorDesired.Thrust.toFixed(1)*10
|
||||
|
||||
model: 10
|
||||
SvgElementImage {
|
||||
property int minThrottleNumber : index+1
|
||||
elementName: "eng" + minThrottleNumber
|
||||
sceneSize: info.sceneSize
|
||||
|
||||
visible: throttleNumberBar.throttleNumber >= minThrottleNumber
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: mask_ThrottleBar
|
||||
elementName: "throttle-mask"
|
||||
sceneSize: info.sceneSize
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: mask_SatBar
|
||||
elementName: "satbar-mask"
|
||||
sceneSize: info.sceneSize
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: mask_telemetryTx
|
||||
elementName: "tx-mask"
|
||||
sceneSize: info.sceneSize
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: mask_telemetryRx
|
||||
elementName: "rx-mask"
|
||||
sceneSize: info.sceneSize
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: home_bg
|
||||
elementName: "home-bg"
|
||||
@ -469,6 +371,9 @@ Item {
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Rc-Input panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_input_bg
|
||||
@ -484,6 +389,7 @@ Item {
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
id: rc_input_anim
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
@ -509,17 +415,43 @@ Item {
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_input_icon
|
||||
elementName: "rc-input-icon"
|
||||
id: rc_input_mousearea
|
||||
elementName: "rc-input-panel-mousearea"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
|
||||
MouseArea { id: hidedisp_rcinput; anchors.fill: parent; onClicked: hide_display_rcinput()}
|
||||
MouseArea { id: hidedisp_rcinput; anchors.fill: parent; cursorShape: Qt.WhatsThisCursor; onClicked: hide_display_rcinput()}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_rc !== true
|
||||
PropertyChanges { target: rc_input_icon; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
PropertyChanges { target: rc_input_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_throttle
|
||||
elementName: "rc-throttle"
|
||||
sceneSize: info.sceneSize
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: (scaledBounds.height * sceneItem.height) * (ManualControlCommand.Throttle)
|
||||
|
||||
x: scaledBounds.x * sceneItem.width
|
||||
y: (scaledBounds.y * sceneItem.height) - rc_throttle.height + (scaledBounds.height * sceneItem.height)
|
||||
|
||||
smooth: true
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_rc !== true
|
||||
PropertyChanges { target: rc_throttle; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
@ -562,6 +494,244 @@ Item {
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Battery panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: battery_bg
|
||||
elementName: "battery-bg"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 10
|
||||
|
||||
//visible: !hide_display_rc
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_volt
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-volt-text"
|
||||
z: 11
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_volt; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: info.batColors[SystemAlarms.Alarm_Battery]
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Voltage.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_amp
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-amp-text"
|
||||
z: 12
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_amp; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: info.batColors[SystemAlarms.Alarm_Battery]
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Current.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_milliamp
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-milliamp-text"
|
||||
z: 13
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_milliamp; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
|
||||
// Alarm based on FlightBatteryState.EstimatedFlightTime < 120s orange, < 60s red
|
||||
color: (FlightBatteryState.EstimatedFlightTime <= 120 && FlightBatteryState.EstimatedFlightTime > 60 ? "orange" :
|
||||
(FlightBatteryState.EstimatedFlightTime <= 60 ? "red": info.batColors[SystemAlarms.Alarm_Battery]))
|
||||
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.ConsumedEnergy.toFixed(0)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_estimated_flight_time
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-estimated-flight-time"
|
||||
z: 14
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_estimated_flight_time; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
//color: info.batColors[SystemAlarms.Alarm_Battery]
|
||||
|
||||
// Alarm based on FlightBatteryState.EstimatedFlightTime < 120s orange, < 60s red
|
||||
color: (FlightBatteryState.EstimatedFlightTime <= 120 && FlightBatteryState.EstimatedFlightTime > 60 ? "orange" :
|
||||
(FlightBatteryState.EstimatedFlightTime <= 60 ? "red": info.batColors[SystemAlarms.Alarm_Battery]))
|
||||
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: formatTime(est_time_h) + ":" + formatTime(est_time_m) + ":" + formatTime(est_time_s)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: battery_labels
|
||||
elementName: "battery-labels"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 15
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_labels; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: battery_mousearea
|
||||
elementName: "battery-panel-mousearea"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 16
|
||||
|
||||
MouseArea { id: hidedisp_battery; anchors.fill: parent; cursorShape: Qt.WhatsThisCursor; onClicked: hide_display_battery()}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: info_border
|
||||
elementName: "info-border"
|
||||
|
@ -255,14 +255,6 @@ Item {
|
||||
visible: SystemAlarms.Alarm_Telemetry > 1
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: warning_battery
|
||||
elementName: "warning-battery"
|
||||
sceneSize: warnings.sceneSize
|
||||
anchors.right: parent.right
|
||||
visible: SystemAlarms.Alarm_Battery > 1
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: warning_attitude
|
||||
elementName: "warning-attitude"
|
||||
|
@ -184,13 +184,13 @@
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6590"
|
||||
id="linearGradient6588"
|
||||
id="linearGradient8314"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.75046337,0,0,0.78676562,38.603678,94.747757)"
|
||||
x1="154.28476"
|
||||
y1="443.99783"
|
||||
x2="153.8302"
|
||||
y2="442.49057"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.75046337,0,0,0.78676562,38.603678,94.747757)" />
|
||||
y2="442.49057" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
@ -199,12 +199,12 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.9633264"
|
||||
inkscape:cx="88.436906"
|
||||
inkscape:cy="96.44167"
|
||||
inkscape:zoom="2.8284271"
|
||||
inkscape:cx="191.50345"
|
||||
inkscape:cy="391.04965"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer86"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer75"
|
||||
showgrid="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
@ -214,11 +214,11 @@
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:object-nodes="false"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:snap-bbox="false"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-nodes="false"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-grids="true"
|
||||
@ -326,7 +326,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer14"
|
||||
inkscape:label="pitch"
|
||||
style="display:inline"
|
||||
style="display:none"
|
||||
transform="translate(0,-4)"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
@ -1299,97 +1299,99 @@
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer83"
|
||||
inkscape:label="rc-input-panel">
|
||||
inkscape:label="rc-input-panel"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer86"
|
||||
inkscape:label="rc-panel-bg"
|
||||
style="display:inline">
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="rc-input-bg"
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rc-bg"
|
||||
d="m -1.8968835,311 c -2.77,0 -5,2.23 -5,5 l 0,140 c 0,2.77 2.23,5 5,5 L 145,461 l 19,0 c 2.77,0 5,-2.23 5,-5 l 0,-30 c 0,-2.77 -2.23,-5 -5,-5 l -14,0 l 0,-105 c 0,-2.77 -2.23,-5 -5,-5 z"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
sodipodi:nodetypes="sssscsssscsss" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4930"
|
||||
d="m 150,421 l 0,40"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.86202729;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="rc-input-icon"
|
||||
transform="matrix(1.7211673,0,0,1.526957,-84.861643,-237.54055)">
|
||||
id="g8289">
|
||||
<g
|
||||
id="g4741"
|
||||
transform="translate(2.0999936,2.6507399)">
|
||||
<rect
|
||||
ry="0.65489727"
|
||||
rx="0.58100104"
|
||||
y="437.06793"
|
||||
x="150.42511"
|
||||
height="8.3682938"
|
||||
width="8.5526886"
|
||||
id="rect4855"
|
||||
style="fill:#464646;fill-opacity:1;stroke:#ffffff;stroke-width:0.43179047;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)"
|
||||
id="rc-input-bg">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#377096;fill-opacity:1;stroke:#ffffff;stroke-width:0.74021238;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4857"
|
||||
sodipodi:cx="155"
|
||||
sodipodi:cy="441"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:ry="2"
|
||||
d="m 157,441 c 0,1.10457 -0.89543,2 -2,2 c -1.10457,0 -2,-0.89543 -2,-2 c 0,-1.10457 0.89543,-2 2,-2 c 1.10457,0 2,0.89543 2,2 z"
|
||||
transform="matrix(0.25,0,0,0.25,114.18623,329.53888)" />
|
||||
sodipodi:nodetypes="sssscsssscsss"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
d="m -1.8968835,311 c -2.77,0 -5,2.23 -5,5 l 0,140 c 0,2.77 2.23,5 5,5 L 145,461 l 19,0 c 2.77,0 5,-2.23 5,-5 l 0,-30 c 0,-2.77 -2.23,-5 -5,-5 l -14,0 l 0,-105 c 0,-2.77 -2.23,-5 -5,-5 z"
|
||||
id="rc-bg"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
transform="matrix(0.625,0,0,0.625,55.875,163.98272)"
|
||||
d="m 157,441 c 0,1.10457 -0.89543,2 -2,2 c -1.10457,0 -2,-0.89543 -2,-2 c 0,-1.10457 0.89543,-2 2,-2 c 1.10457,0 2,0.89543 2,2 z"
|
||||
sodipodi:ry="2"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:cy="441"
|
||||
sodipodi:cx="155"
|
||||
id="path4859"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.19738995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(-0.25,0,0,-0.25,195.4413,550.05917)"
|
||||
d="m 157,441 c 0,1.10457 -0.89543,2 -2,2 c -1.10457,0 -2,-0.89543 -2,-2 c 0,-1.10457 0.89543,-2 2,-2 c 1.10457,0 2,0.89543 2,2 z"
|
||||
sodipodi:ry="2"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:cy="441"
|
||||
sodipodi:cx="155"
|
||||
id="path4875"
|
||||
style="fill:#377096;fill-opacity:1;stroke:#ffffff;stroke-width:0.74021238;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.19738995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4877"
|
||||
sodipodi:cx="155"
|
||||
sodipodi:cy="441"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:ry="2"
|
||||
d="m 157,441 c 0,1.10457 -0.89543,2 -2,2 c -1.10457,0 -2,-0.89543 -2,-2 c 0,-1.10457 0.89543,-2 2,-2 c 1.10457,0 2,0.89543 2,2 z"
|
||||
transform="matrix(-0.625,0,0,-0.625,253.625,715.23272)" />
|
||||
<rect
|
||||
style="fill:url(#linearGradient6588);fill-opacity:1;stroke:#ededed;stroke-width:0.12336873;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.81176471;stroke-dasharray:none"
|
||||
id="rect3963"
|
||||
width="4.352685"
|
||||
height="2.0068226"
|
||||
x="152.5251"
|
||||
y="442.32941"
|
||||
rx="0.29050052"
|
||||
ry="0.32744864" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3968"
|
||||
d="m 154.54064,436.85572 l 0,-1.69713 l 5,-3"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.80189669;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" />
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.86202729;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 150,421 l 0,40"
|
||||
id="path4930"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="matrix(1.5066271,0,0,1.440284,-73.58947,-192.08566)"
|
||||
id="rc-input-icon">
|
||||
<rect
|
||||
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.29312041;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4855"
|
||||
width="8.5526886"
|
||||
height="8.3682938"
|
||||
x="150.42511"
|
||||
y="437.06793"
|
||||
rx="0.80000001"
|
||||
ry="0.80000001" />
|
||||
<path
|
||||
transform="matrix(0.25,0,0,0.25,114.18623,329.53888)"
|
||||
d="m 157,441 c 0,1.10457 -0.89543,2 -2,2 c -1.10457,0 -2,-0.89543 -2,-2 c 0,-1.10457 0.89543,-2 2,-2 c 1.10457,0 2,0.89543 2,2 z"
|
||||
sodipodi:ry="2"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:cy="441"
|
||||
sodipodi:cx="155"
|
||||
id="path4857"
|
||||
style="fill:#377096;fill-opacity:1;stroke:#ffffff;stroke-width:0.50249225;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.13399792;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4859"
|
||||
sodipodi:cx="155"
|
||||
sodipodi:cy="441"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:ry="2"
|
||||
d="m 157,441 c 0,1.10457 -0.89543,2 -2,2 c -1.10457,0 -2,-0.89543 -2,-2 c 0,-1.10457 0.89543,-2 2,-2 c 1.10457,0 2,0.89543 2,2 z"
|
||||
transform="matrix(0.625,0,0,0.625,55.875,163.98272)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#377096;fill-opacity:1;stroke:#ffffff;stroke-width:0.50249225;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4875"
|
||||
sodipodi:cx="155"
|
||||
sodipodi:cy="441"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:ry="2"
|
||||
d="m 157,441 c 0,1.10457 -0.89543,2 -2,2 c -1.10457,0 -2,-0.89543 -2,-2 c 0,-1.10457 0.89543,-2 2,-2 c 1.10457,0 2,0.89543 2,2 z"
|
||||
transform="matrix(-0.25,0,0,-0.25,195.4413,550.05917)" />
|
||||
<path
|
||||
transform="matrix(-0.625,0,0,-0.625,253.625,715.23272)"
|
||||
d="m 157,441 c 0,1.10457 -0.89543,2 -2,2 c -1.10457,0 -2,-0.89543 -2,-2 c 0,-1.10457 0.89543,-2 2,-2 c 1.10457,0 2,0.89543 2,2 z"
|
||||
sodipodi:ry="2"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:cy="441"
|
||||
sodipodi:cx="155"
|
||||
id="path4877"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.13399792;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<rect
|
||||
ry="0.22735006"
|
||||
rx="0.19281514"
|
||||
y="442.32941"
|
||||
x="152.5251"
|
||||
height="2.0068226"
|
||||
width="4.352685"
|
||||
id="rect3963"
|
||||
style="fill:url(#linearGradient8314);fill-opacity:1;stroke:#ededed;stroke-width:0.08374871;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.81176471;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.5443666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none"
|
||||
d="m 154.54064,436.85572 l 0,-1.69713 l 5,-3"
|
||||
id="path3968"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -1483,13 +1485,46 @@
|
||||
style="fill:#1e1e1e;fill-opacity:1;fill-rule:nonzero;stroke:#5555e6;stroke-width:3.44810915;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc"
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)" />
|
||||
<text
|
||||
transform="matrix(0,-0.99990361,1.0000964,0,0,0)"
|
||||
inkscape:transform-center-y="-11.62783"
|
||||
inkscape:transform-center-x="-12.067449"
|
||||
sodipodi:linespacing="125%"
|
||||
id="text8752"
|
||||
y="90.643921"
|
||||
x="-444.89758"
|
||||
style="font-size:10.39828682px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
xml:space="preserve"><tspan
|
||||
id="tspan8754"
|
||||
y="90.643921"
|
||||
x="-444.89758"
|
||||
sodipodi:role="line">THROTTLE</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#d90000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 81.414,387.28098 l 11,0.0872"
|
||||
id="path8757"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer93"
|
||||
inkscape:label="rc-throttle"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#00ff00;fill-opacity:0.6125;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 92.727829,447.54335 c -3.74455,0.37024 -7.701236,0.3364 -11.59944,0 l 0,-60.31428 l 11.59944,0 z"
|
||||
id="rc-throttle"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer87"
|
||||
inkscape:label="rc-stick"
|
||||
style="display:inline">
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="rc-stick"
|
||||
style="fill:#e58956;fill-opacity:1"
|
||||
@ -1515,6 +1550,345 @@
|
||||
sodipodi:nodetypes="cczcccc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer90"
|
||||
inkscape:label="rc-input-panel-mousearea"
|
||||
sodipodi:insensitive="true"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rc-input-panel-mousearea"
|
||||
width="21.542944"
|
||||
height="45.007332"
|
||||
x="173.92392"
|
||||
y="415.2142"
|
||||
rx="0.09687043"
|
||||
ry="0.096870422" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer84"
|
||||
inkscape:label="battery-panel"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer85"
|
||||
inkscape:label="battery-bg"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="battery-bg"
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-73.769597)"
|
||||
style="display:inline">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8224"
|
||||
d="m -1.8968835,311 c -2.77,0 -5,2.23 -5,5 l 0,140 c 0,2.77 2.23,5 5,5 L 150,461 l 7e-5,-40.39454 l 13.99993,0 c 2.77,0 5,-2.23 5,-5 l 0,-30 c 0,-2.77 -2.23084,-5.06819 -5,-5 l -14,0 L 150,316 c 0,-2.77 -2.23,-5 -5,-5 z"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ssssccsssscsss" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8226"
|
||||
d="m 150,380.60546 l 7e-5,40"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.86202729;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<g
|
||||
id="battery-icon"
|
||||
transform="translate(-25.458981,10.243713)">
|
||||
<rect
|
||||
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect8252"
|
||||
width="10.563934"
|
||||
height="23.048584"
|
||||
x="179.70692"
|
||||
y="379.88272"
|
||||
rx="0.3369644"
|
||||
ry="0.37989542" />
|
||||
<rect
|
||||
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect8254"
|
||||
width="4.4416542"
|
||||
height="2.4008942"
|
||||
x="182.70804"
|
||||
y="377.36176"
|
||||
rx="0.3369644"
|
||||
ry="0.37989542" />
|
||||
<path
|
||||
style="fill:#fcc100;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 187.02966,383.00388 l -5.04189,8.88331 l 3.24121,-0.12005 l -3.12116,7.56282 l 6.12228,-8.76327 l -3.48129,-0.12004 z"
|
||||
id="path8256"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer88"
|
||||
inkscape:label="battery-labels"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="battery-labels">
|
||||
<g
|
||||
transform="matrix(2.4789293,0,0,2.5720165,-1419.3751,268.75514)"
|
||||
id="battery-milliamp-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4641"
|
||||
d="m 620.206,52 l 0,-4.224819 l 0.64048,0 l 0,0.592748 c 0.13261,-0.206861 0.30897,-0.372618 0.5291,-0.497271 c 0.22012,-0.127298 0.47075,-0.190948 0.75188,-0.190953 c 0.31294,5e-6 0.56887,0.06498 0.76778,0.194931 c 0.20156,0.129957 0.34345,0.311627 0.42567,0.545009 c 0.33416,-0.493289 0.76911,-0.739935 1.30484,-0.73994 c 0.41903,5e-6 0.74126,0.116698 0.96669,0.350079 c 0.22543,0.230738 0.33814,0.587447 0.33815,1.070129 l 0,2.900087 l -0.71209,0 l 0,-2.661397 c -10e-6,-0.286425 -0.0239,-0.491964 -0.0716,-0.616617 c -0.0451,-0.127298 -0.12863,-0.229404 -0.25063,-0.306319 c -0.122,-0.07691 -0.26521,-0.115363 -0.42964,-0.115367 c -0.29704,4e-6 -0.54369,0.09946 -0.73994,0.298363 c -0.19626,0.19626 -0.29439,0.511861 -0.29438,0.946805 l 0,2.454532 l -0.71608,0 l 0,-2.744939 c 0,-0.31825 -0.0583,-0.55694 -0.17503,-0.716071 c -0.1167,-0.159123 -0.30765,-0.238686 -0.57286,-0.23869 c -0.20156,4e-6 -0.38854,0.05305 -0.56092,0.159127 c -0.16974,0.106088 -0.29306,0.261237 -0.36997,0.465446 c -0.0769,0.204216 -0.11537,0.4986 -0.11537,0.883154 l 0,2.191973 l -0.71607,0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4645"
|
||||
d="m 632.45877,52 l 0,-5.832 l 0.71607,0 l 0,2.092518 c 0.33416,-0.387204 0.75585,-0.580808 1.26506,-0.580813 c 0.31294,5e-6 0.58479,0.06233 0.81552,0.186974 c 0.23073,0.122002 0.39516,0.291737 0.4933,0.509206 c 0.10077,0.217477 0.15116,0.533079 0.15117,0.946805 l 0,2.67731 l -0.71607,0 l 0,-2.67731 c -10e-6,-0.358032 -0.0782,-0.617939 -0.23472,-0.779721 c -0.15382,-0.164428 -0.37262,-0.246643 -0.65639,-0.246647 c -0.21218,4e-6 -0.41241,0.0557 -0.60071,0.167083 c -0.18565,0.10874 -0.31825,0.257259 -0.39782,0.445555 c -0.0796,0.188304 -0.11934,0.44821 -0.11934,0.779722 l 0,2.311318 l -0.71607,0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4643"
|
||||
d="m 626.46764,52 l 2.23971,-5.832 l 0.83144,0 l 2.3869,5.832 l -0.87917,0 l -0.68027,-1.766308 l -2.43862,0 L 627.28714,52 l -0.8195,0 m 1.68277,-2.394859 l 1.97715,0 l -0.60866,-1.615138 c -0.18565,-0.490637 -0.32356,-0.893758 -0.41373,-1.209364 c -0.0743,0.373953 -0.17902,0.745248 -0.31428,1.113888 l -0.64048,1.710614" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(2.6441912,0,0,2.7434696,-1532.0391,272.46228)"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="battery-amp-label">
|
||||
<path
|
||||
d="m 631.84326,27.351151 l -1.00342,2.720946 l 2.0105,0 l -1.00708,-2.720946 m -0.41748,-0.72876 l 0.83862,0 l 2.08375,5.467529 l -0.76904,0 l -0.49805,-1.402588 l -2.4646,0 l -0.49805,1.402588 l -0.78003,0 l 2.0874,-5.467529"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path4614"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(2.4789292,0,0,2.5720027,-1413.6633,282.26069)"
|
||||
id="battery-volt-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6809"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 625.76807,14.08992 L 623.5415,8.2578888 l 0.82422,0 l 1.84766,4.9101562 l 1.85156,-4.9101562 l 0.82031,0 L 626.6626,14.08992 l -0.89453,0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="battery-time-left-label">
|
||||
<path
|
||||
d="m 122.65913,432.62387 l 0,-10.10156 l -3.77343,0 l 0,-1.35156 l 9.07812,0 l 0,1.35156 l -3.78906,0 l 0,10.10156 l -1.51563,0"
|
||||
id="path8733"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 129.84663,432.62387 l 0,-11.45312 l 1.51563,0 l 0,11.45312 l -1.51563,0"
|
||||
id="path8735"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 133.97945,432.62387 l 0,-11.45312 l 2.28125,0 l 2.71093,8.10937 c 0.25,0.75521 0.43229,1.32032 0.54688,1.69531 c 0.1302,-0.41666 0.33333,-1.02864 0.60937,-1.83593 l 2.74219,-7.96875 l 2.03906,0 l 0,11.45312 l -1.46093,0 l 0,-9.58594 l -3.32813,9.58594 l -1.36719,0 l -3.3125,-9.75 l 0,9.75 l -1.46093,0"
|
||||
id="path8737"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 147.40132,432.62387 l 0,-11.45312 l 8.28125,0 l 0,1.35156 l -6.76562,0 l 0,3.50781 l 6.33593,0 l 0,1.34375 l -6.33593,0 l 0,3.89844 l 7.03125,0 l 0,1.35156 l -8.54688,0"
|
||||
id="path8739"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 119.22945,452.62387 l 0,-11.45312 l 1.51562,0 l 0,10.10156 l 5.64063,0 l 0,1.35156 l -7.15625,0"
|
||||
id="path8741"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 128.22945,452.62387 l 0,-11.45312 l 8.28125,0 l 0,1.35156 l -6.76563,0 l 0,3.50781 l 6.33594,0 l 0,1.34375 l -6.33594,0 l 0,3.89844 l 7.03125,0 l 0,1.35156 l -8.54687,0"
|
||||
id="path8743"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 138.96382,452.62387 l 0,-11.45312 l 7.72656,0 l 0,1.35156 l -6.21093,0 l 0,3.54687 l 5.375,0 l 0,1.35157 l -5.375,0 l 0,5.20312 l -1.51563,0"
|
||||
id="path8745"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 151.58101,452.62387 l 0,-10.10156 l -3.77344,0 l 0,-1.35156 l 9.07813,0 l 0,1.35156 l -3.78907,0 l 0,10.10156 l -1.51562,0"
|
||||
id="path8747"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer89"
|
||||
inkscape:label="battery-panel-mousearea"
|
||||
sodipodi:insensitive="true">
|
||||
<rect
|
||||
style="fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="battery-panel-mousearea"
|
||||
width="21.192514"
|
||||
height="44.676563"
|
||||
x="173.92392"
|
||||
y="368.495"
|
||||
rx="0.096870422"
|
||||
ry="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer91"
|
||||
inkscape:label="battery-text"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="battery-milliamp-text"
|
||||
transform="matrix(0.95,0,0,0.95,-1.4,19.75)">
|
||||
<rect
|
||||
y="375"
|
||||
x="12"
|
||||
height="40"
|
||||
width="100"
|
||||
id="warning-low-energy"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
|
||||
<g
|
||||
id="g8649"
|
||||
transform="matrix(0.98684211,0,0,0.98684211,0.81578918,4.2105244)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6494"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 30.733386,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518413,1.36347 c -0.61286,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764802,-0.46482 -3.666885,-1.39446 c -0.895207,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.468251,-2.8543 1.404772,-3.81148 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 c 1.783497,2e-5 3.143527,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 37.495588,403.27695 35.946205,404 33.99743,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676773,-0.3202 2.220777,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.82635,-2.63396 c -2.1e-5,-1.10866 -0.275471,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680244,0.32367 -2.231122,0.97096 c -0.544005,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272001,1.99356 0.816006,2.63396 c 0.550878,0.64042 1.2946,0.96063 2.231122,0.96062" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6496"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 44.202704,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590718,0.56811 c 0.537107,0.13083 1.063892,0.19625 1.580374,0.19625 c 1.377229,0 2.427349,-0.46137 3.150424,-1.38412 c 0.729907,-0.92963 1.14652,-2.33785 1.249837,-4.22467 c -0.399413,0.59223 -0.905551,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034853,0.47515 c -1.542507,0 -2.764802,-0.46482 -3.666884,-1.39446 c -0.895208,-0.9365 -1.342812,-2.21389 -1.342812,-3.83215 c 0,-1.5838 0.468272,-2.8543 1.404793,-3.81148 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 c 1.783518,2e-5 3.143527,0.68519 4.08007,2.05552 c 0.943376,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578442,4.37272 -1.735307,5.82569 C 50.964906,403.27695 49.415523,404 47.466748,404 c -0.523358,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936522,1e-5 1.676773,-0.3202 2.220798,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284276,-0.97094 -2.220798,-0.97096 c -0.936522,2e-5 -1.680222,0.32367 -2.231101,0.97096 c -0.544025,0.64042 -0.816027,1.51496 -0.816006,2.62362 c -2.1e-5,1.11557 0.271981,1.99356 0.816006,2.63396 c 0.550879,0.64042 1.294579,0.96063 2.231101,0.96062" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6498"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 57.672043,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590698,0.56811 c 0.537128,0.13083 1.063912,0.19625 1.580394,0.19625 c 1.377207,0 2.42735,-0.46137 3.150403,-1.38412 c 0.729929,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399393,0.59223 -0.905529,1.04672 -1.518391,1.36347 c -0.612882,0.31677 -1.291173,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.34281,-2.21389 -1.34281,-3.83215 c 0,-1.5838 0.468271,-2.8543 1.404771,-3.81148 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 c 1.783519,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415117,5.94964 c -2.2e-5,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 64.434246,403.27695 62.884862,404 60.936087,404 c -0.523357,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537128,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936521,1e-5 1.676774,-0.3202 2.220799,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284278,-0.97094 -2.220799,-0.97096 c -0.936521,2e-5 -1.680222,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272002,1.99356 0.816006,2.63396 c 0.5509,0.64042 1.294601,0.96063 2.231122,0.96062" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6500"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 71.141382,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053569,0.43727 1.590697,0.56811 c 0.537129,0.13083 1.063913,0.19625 1.580375,0.19625 c 1.377228,0 2.427369,-0.46137 3.150424,-1.38412 c 0.729928,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399414,0.59223 -0.905531,1.04672 -1.518391,1.36347 c -0.612883,0.31677 -1.291174,0.47515 -2.034874,0.47515 c -1.542508,0 -2.764781,-0.46482 -3.666885,-1.39446 c -0.895186,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404772,-3.81148 c 0.936522,-0.95717 2.182912,-1.43575 3.73919,-1.43577 c 1.783498,2e-5 3.143528,0.68519 4.08005,2.05552 c 0.943396,1.36348 1.415095,3.34668 1.415116,5.94964 c -2.1e-5,2.43082 -0.578464,4.37272 -1.735329,5.82569 C 77.903584,403.27695 76.354202,404 74.405426,404 c -0.523356,0 -1.053589,-0.0516 -1.590717,-0.15493 c -0.537108,-0.1033 -1.094883,-0.25823 -1.673327,-0.46482 m 4.152355,-6.53841 c 0.936501,1e-5 1.676774,-0.3202 2.220778,-0.96062 c 0.5509,-0.6404 0.82635,-1.51839 0.82635,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220778,-0.97096 c -0.936522,2e-5 -1.680221,0.32367 -2.231122,0.97096 c -0.544003,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272002,1.99356 0.816005,2.63396 c 0.550901,0.64042 1.2946,0.96063 2.231122,0.96062" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6502"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 84.610722,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.342789,-2.21389 -1.342789,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404771,-3.81148 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 c 1.783497,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415096,3.34668 1.415096,5.94964 c 0,2.43082 -0.578444,4.37272 -1.735308,5.82569 C 91.372924,403.27695 89.823542,404 87.874766,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537128,-0.1033 -1.094903,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676774,-0.3202 2.220777,-0.96062 c 0.55088,-0.6404 0.826329,-1.51839 0.826351,-2.63396 c -2.2e-5,-1.10866 -0.275471,-1.9832 -0.826351,-2.62362 c -0.544003,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680243,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272001,1.99356 0.816005,2.63396 c 0.550879,0.64042 1.2946,0.96063 2.231122,0.96062" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="battery-amp-text"
|
||||
transform="matrix(0.95,0,0,0.95,-1.4,15.75)">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
|
||||
id="warning-high-current"
|
||||
width="100"
|
||||
height="40"
|
||||
x="12"
|
||||
y="335" />
|
||||
<g
|
||||
id="g8642"
|
||||
transform="matrix(0.98684211,0,0,0.98684211,1.8860984,3.7600279)">
|
||||
<path
|
||||
d="m 37.344081,349.57585 c -1.074235,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537107,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268575,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353135,1.58037 2.42737,1.58037 c 1.081133,0 1.890263,-0.52679 2.427392,-1.58037 c 0.543982,-1.06047 0.815984,-2.64772 0.816005,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816005,-4.76177 c -0.537129,-1.06046 -1.346259,-1.5907 -2.427392,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915854,1.36348 1.37378,3.34669 1.373802,5.94964 c -2.2e-5,2.59609 -0.457948,4.57931 -1.373802,5.94965 c -0.908979,1.36347 -2.227674,2.04519 -3.956107,2.04519 c -1.728411,0 -3.050555,-0.68172 -3.966429,-2.04519 c -0.908958,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.4545,-4.58616 1.363458,-5.94964 c 0.915874,-1.37033 2.238018,-2.0555 3.966429,-2.05552"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4599"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 50.813421,349.57585 c -1.074237,10e-6 -1.883367,0.53025 -2.427371,1.59071 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268554,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353134,1.58037 2.427371,1.58037 c 1.081132,0 1.890241,-0.52679 2.42737,-1.58037 c 0.544004,-1.06047 0.816006,-2.64772 0.816027,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816027,-4.76177 c -0.537129,-1.06046 -1.346238,-1.5907 -2.42737,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956106,2.05552 c 0.915854,1.36348 1.373781,3.34669 1.373781,5.94964 c 0,2.59609 -0.457927,4.57931 -1.373781,5.94965 c -0.908978,1.36347 -2.227673,2.04519 -3.956106,2.04519 c -1.728433,0 -3.050576,-0.68172 -3.96643,-2.04519 c -0.908978,-1.37034 -1.363457,-3.35356 -1.363457,-5.94965 c 0,-2.60295 0.454479,-4.58616 1.363457,-5.94964 c 0.915854,-1.37033 2.237997,-2.0555 3.96643,-2.05552"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4602"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 59.820516,361 L 62,361 l 0,2.62362 l -2.179484,0 l 0,-2.62362"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4604"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 71.017419,349.57585 c -1.074236,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537129,1.05359 -0.805683,2.64085 -0.805683,4.76177 c 0,2.11407 0.268554,3.70132 0.805683,4.76179 c 0.544004,1.05358 1.353134,1.58037 2.42737,1.58037 c 1.081132,0 1.890242,-0.52679 2.427371,-1.58037 c 0.544003,-1.06047 0.816005,-2.64772 0.816026,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816026,-4.76177 c -0.537129,-1.06046 -1.346239,-1.5907 -2.427371,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915854,1.36348 1.37378,3.34669 1.37378,5.94964 c 0,2.59609 -0.457926,4.57931 -1.37378,5.94965 c -0.908979,1.36347 -2.227674,2.04519 -3.956107,2.04519 c -1.728432,0 -3.050575,-0.68172 -3.966429,-2.04519 c -0.908958,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.4545,-4.58616 1.363458,-5.94964 c 0.915854,-1.37033 2.237997,-2.0555 3.966429,-2.05552"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4606"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 84.486758,349.57585 c -1.074235,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268554,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353135,1.58037 2.42737,1.58037 c 1.081133,0 1.890242,-0.52679 2.427371,-1.58037 c 0.544004,-1.06047 0.816005,-2.64772 0.816005,-4.76179 c 0,-2.12092 -0.272001,-3.70818 -0.816005,-4.76177 c -0.537129,-1.06046 -1.346238,-1.5907 -2.427371,-1.59071 m 0,-1.65268 c 1.728412,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915853,1.36348 1.373781,3.34669 1.373781,5.94964 c 0,2.59609 -0.457928,4.57931 -1.373781,5.94965 c -0.908979,1.36347 -2.227695,2.04519 -3.956107,2.04519 c -1.728432,0 -3.050576,-0.68172 -3.966429,-2.04519 c -0.908979,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.454479,-4.58616 1.363458,-5.94964 c 0.915853,-1.37033 2.237997,-2.0555 3.966429,-2.05552"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4608"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="battery-volt-text"
|
||||
transform="matrix(0.95,0,0,0.95,-1.4,11.75)">
|
||||
<rect
|
||||
y="295"
|
||||
x="12"
|
||||
height="40"
|
||||
width="100"
|
||||
id="warning-low-voltage"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
|
||||
<g
|
||||
id="g8656"
|
||||
transform="matrix(0.98684211,0,0,0.98684211,4.3808609,3.1578932)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6483"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 34.816055,309.65268 c -1.074235,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537107,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268575,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353135,1.58038 2.42737,1.58038 c 1.081133,0 1.890263,-0.5268 2.427392,-1.58038 c 0.543982,-1.06046 0.815984,-2.64772 0.816005,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816005,-4.76178 c -0.537129,-1.06046 -1.346259,-1.59069 -2.427392,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915854,1.36347 1.37378,3.34668 1.373802,5.94964 c -2.2e-5,2.59609 -0.457948,4.5793 -1.373802,5.94965 c -0.908979,1.36346 -2.227674,2.04518 -3.956107,2.04519 c -1.728411,-10e-6 -3.050555,-0.68173 -3.966429,-2.04519 c -0.908958,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.4545,-4.58617 1.363458,-5.94964 C 31.7655,308.68518 33.087644,308.00001 34.816055,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6485"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 48.285395,309.65268 c -1.074237,1e-5 -1.883367,0.53024 -2.427371,1.5907 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268554,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353134,1.58038 2.427371,1.58038 c 1.081132,0 1.890241,-0.5268 2.42737,-1.58038 c 0.544004,-1.06046 0.816006,-2.64772 0.816027,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816027,-4.76178 c -0.537129,-1.06046 -1.346238,-1.59069 -2.42737,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956106,2.05552 c 0.915854,1.36347 1.373781,3.34668 1.373781,5.94964 c 0,2.59609 -0.457927,4.5793 -1.373781,5.94965 c -0.908978,1.36346 -2.227673,2.04518 -3.956106,2.04519 c -1.728433,-10e-6 -3.050576,-0.68173 -3.96643,-2.04519 c -0.908978,-1.37035 -1.363457,-3.35356 -1.363457,-5.94965 c 0,-2.60296 0.454479,-4.58617 1.363457,-5.94964 c 0.915854,-1.37034 2.237997,-2.05551 3.96643,-2.05552" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6487"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 57.29249,321.07682 l 2.179484,0 l 0,2.62362 l -2.179484,0 l 0,-2.62362" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6489"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 68.489393,309.65268 c -1.074236,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537129,1.05359 -0.805683,2.64085 -0.805683,4.76178 c 0,2.11406 0.268554,3.70132 0.805683,4.76178 c 0.544004,1.05358 1.353134,1.58038 2.42737,1.58038 c 1.081132,0 1.890242,-0.5268 2.427371,-1.58038 c 0.544003,-1.06046 0.816005,-2.64772 0.816026,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816026,-4.76178 c -0.537129,-1.06046 -1.346239,-1.59069 -2.427371,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915854,1.36347 1.37378,3.34668 1.37378,5.94964 c 0,2.59609 -0.457926,4.5793 -1.37378,5.94965 c -0.908979,1.36346 -2.227674,2.04518 -3.956107,2.04519 c -1.728432,-10e-6 -3.050575,-0.68173 -3.966429,-2.04519 c -0.908958,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.4545,-4.58617 1.363458,-5.94964 c 0.915854,-1.37034 2.237997,-2.05551 3.966429,-2.05552" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6491"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 81.958732,309.65268 c -1.074235,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268554,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353135,1.58038 2.42737,1.58038 c 1.081133,0 1.890242,-0.5268 2.427371,-1.58038 c 0.544004,-1.06046 0.816005,-2.64772 0.816005,-4.76178 c 0,-2.12093 -0.272001,-3.70819 -0.816005,-4.76178 c -0.537129,-1.06046 -1.346238,-1.59069 -2.427371,-1.5907 m 0,-1.65268 c 1.728412,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915853,1.36347 1.373781,3.34668 1.373781,5.94964 c 0,2.59609 -0.457928,4.5793 -1.373781,5.94965 C 85.00586,323.31827 83.687144,323.99999 81.958732,324 c -1.728432,-10e-6 -3.050576,-0.68173 -3.966429,-2.04519 c -0.908979,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.454479,-4.58617 1.363458,-5.94964 C 78.908156,308.68518 80.2303,308.00001 81.958732,308" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.95,0,0,0.95,-1.4,61.75)"
|
||||
id="battery-estimated-flight-time">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
|
||||
id="rect8665"
|
||||
width="100"
|
||||
height="40"
|
||||
x="12"
|
||||
y="375" />
|
||||
<g
|
||||
transform="matrix(0.98684211,0,0,0.98684211,0.81578918,4.2105244)"
|
||||
id="g8667">
|
||||
<path
|
||||
d="m 30.733386,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518413,1.36347 c -0.61286,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764802,-0.46482 -3.666885,-1.39446 c -0.895207,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.468251,-2.8543 1.404772,-3.81148 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 c 1.783497,2e-5 3.143527,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 37.495588,403.27695 35.946205,404 33.99743,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676773,-0.3202 2.220777,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.82635,-2.63396 c -2.1e-5,-1.10866 -0.275471,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680244,0.32367 -2.231122,0.97096 c -0.544005,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272001,1.99356 0.816006,2.63396 c 0.550878,0.64042 1.2946,0.96063 2.231122,0.96062"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8669"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 44.202704,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590718,0.56811 c 0.537107,0.13083 1.063892,0.19625 1.580374,0.19625 c 1.377229,0 2.427349,-0.46137 3.150424,-1.38412 c 0.729907,-0.92963 1.14652,-2.33785 1.249837,-4.22467 c -0.399413,0.59223 -0.905551,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034853,0.47515 c -1.542507,0 -2.764802,-0.46482 -3.666884,-1.39446 c -0.895208,-0.9365 -1.342812,-2.21389 -1.342812,-3.83215 c 0,-1.5838 0.468272,-2.8543 1.404793,-3.81148 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 c 1.783518,2e-5 3.143527,0.68519 4.08007,2.05552 c 0.943376,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578442,4.37272 -1.735307,5.82569 C 50.964906,403.27695 49.415523,404 47.466748,404 c -0.523358,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936522,1e-5 1.676773,-0.3202 2.220798,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284276,-0.97094 -2.220798,-0.97096 c -0.936522,2e-5 -1.680222,0.32367 -2.231101,0.97096 c -0.544025,0.64042 -0.816027,1.51496 -0.816006,2.62362 c -2.1e-5,1.11557 0.271981,1.99356 0.816006,2.63396 c 0.550879,0.64042 1.294579,0.96063 2.231101,0.96062"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8671"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 57.672043,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590698,0.56811 c 0.537128,0.13083 1.063912,0.19625 1.580394,0.19625 c 1.377207,0 2.42735,-0.46137 3.150403,-1.38412 c 0.729929,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399393,0.59223 -0.905529,1.04672 -1.518391,1.36347 c -0.612882,0.31677 -1.291173,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.34281,-2.21389 -1.34281,-3.83215 c 0,-1.5838 0.468271,-2.8543 1.404771,-3.81148 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 c 1.783519,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415117,5.94964 c -2.2e-5,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 64.434246,403.27695 62.884862,404 60.936087,404 c -0.523357,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537128,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936521,1e-5 1.676774,-0.3202 2.220799,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284278,-0.97094 -2.220799,-0.97096 c -0.936521,2e-5 -1.680222,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272002,1.99356 0.816006,2.63396 c 0.5509,0.64042 1.294601,0.96063 2.231122,0.96062"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8673"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 71.141382,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053569,0.43727 1.590697,0.56811 c 0.537129,0.13083 1.063913,0.19625 1.580375,0.19625 c 1.377228,0 2.427369,-0.46137 3.150424,-1.38412 c 0.729928,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399414,0.59223 -0.905531,1.04672 -1.518391,1.36347 c -0.612883,0.31677 -1.291174,0.47515 -2.034874,0.47515 c -1.542508,0 -2.764781,-0.46482 -3.666885,-1.39446 c -0.895186,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404772,-3.81148 c 0.936522,-0.95717 2.182912,-1.43575 3.73919,-1.43577 c 1.783498,2e-5 3.143528,0.68519 4.08005,2.05552 c 0.943396,1.36348 1.415095,3.34668 1.415116,5.94964 c -2.1e-5,2.43082 -0.578464,4.37272 -1.735329,5.82569 C 77.903584,403.27695 76.354202,404 74.405426,404 c -0.523356,0 -1.053589,-0.0516 -1.590717,-0.15493 c -0.537108,-0.1033 -1.094883,-0.25823 -1.673327,-0.46482 m 4.152355,-6.53841 c 0.936501,1e-5 1.676774,-0.3202 2.220778,-0.96062 c 0.5509,-0.6404 0.82635,-1.51839 0.82635,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220778,-0.97096 c -0.936522,2e-5 -1.680221,0.32367 -2.231122,0.97096 c -0.544003,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272002,1.99356 0.816005,2.63396 c 0.550901,0.64042 1.2946,0.96063 2.231122,0.96062"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8675"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 84.610722,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.342789,-2.21389 -1.342789,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404771,-3.81148 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 c 1.783497,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415096,3.34668 1.415096,5.94964 c 0,2.43082 -0.578444,4.37272 -1.735308,5.82569 C 91.372924,403.27695 89.823542,404 87.874766,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537128,-0.1033 -1.094903,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676774,-0.3202 2.220777,-0.96062 c 0.55088,-0.6404 0.826329,-1.51839 0.826351,-2.63396 c -2.2e-5,-1.10866 -0.275471,-1.9832 -0.826351,-2.62362 c -0.544003,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680243,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272001,1.99356 0.816005,2.63396 c 0.550879,0.64042 1.2946,0.96063 2.231122,0.96062"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8677"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
@ -1531,183 +1905,23 @@
|
||||
transform="translate(0,4)">
|
||||
<g
|
||||
id="info-bg"
|
||||
inkscape:label="#g4460">
|
||||
<g
|
||||
id="info-battery"
|
||||
inkscape:label="#g3816">
|
||||
<rect
|
||||
y="-0.5"
|
||||
x="550"
|
||||
height="18"
|
||||
width="92"
|
||||
id="warning-low-voltage"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="warning-high-current"
|
||||
width="92"
|
||||
height="18"
|
||||
x="550"
|
||||
y="17.5" />
|
||||
<rect
|
||||
y="35.5"
|
||||
x="550"
|
||||
height="17.5"
|
||||
width="92"
|
||||
id="warning-low-energy"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
</g>
|
||||
inkscape:label="#g4460"
|
||||
transform="matrix(1.1653043,0,0,1,0.08265213,0)">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
id="rect4615"
|
||||
width="550.5"
|
||||
height="54"
|
||||
height="58.383232"
|
||||
x="-0.5"
|
||||
y="-0.5" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="gps-label"
|
||||
transform="translate(0,-3.01148)">
|
||||
<path
|
||||
d="m 9.5151701,14.066165 l 0,-1.566406 l -1.2890625,0 l 0,-0.648438 l 2.0703124,0 l 0,2.503906 C 9.9917274,14.571374 9.6557902,14.735436 9.2886076,14.847415 C 8.9214159,14.95679 8.5294892,15.011477 8.1128263,15.011477 c -0.9114607,0 -1.6250017,-0.265624 -2.140625,-0.796875 C 5.4591798,13.68075 5.2026696,12.938563 5.2026701,11.98804 c -5e-7,-0.953121 0.2565097,-1.695308 0.7695312,-2.2265625 C 6.4878246,9.227629 7.2013656,8.9607022 8.1128263,8.9606962 c 0.3802046,6e-6 0.7408814,0.046881 1.0820313,0.140625 c 0.3437452,0.093756 0.6601511,0.2317764 0.9492184,0.4140625 l 0,0.8398433 C 9.8524046,10.107836 9.5425091,9.9216387 9.2143888,9.7966337 C 8.8862597,9.6716389 8.541208,9.609139 8.1792326,9.6091337 C 7.4656882,9.609139 6.9292304,9.8083576 6.5698576,10.20679 c -0.3567723,0.398442 -0.5351575,0.992191 -0.5351563,1.78125 c -1.2e-6,0.78646 0.178384,1.378908 0.5351563,1.777344 c 0.3593728,0.398438 0.8958306,0.597657 1.609375,0.597656 c 0.2786421,1e-6 0.5273398,-0.02344 0.7460937,-0.07031 c 0.2187457,-0.04948 0.41536,-0.124999 0.5898438,-0.226562"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6282"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 12.530795,9.7146025 l 0,2.1914065 l 0.992188,0 c 0.367184,3e-6 0.651038,-0.09505 0.851562,-0.285157 c 0.200517,-0.1901 0.300778,-0.460933 0.300781,-0.8125 c -3e-6,-0.348953 -0.100264,-0.618484 -0.300781,-0.8085933 C 14.174021,9.8096596 13.890167,9.7146077 13.522983,9.7146025 l -0.992188,0 M 11.741733,9.066165 l 1.78125,0 c 0.653642,5.8e-6 1.147131,0.1484432 1.480468,0.4453125 c 0.335933,0.2942759 0.503902,0.7265675 0.503907,1.2968745 c -5e-6,0.575525 -0.167974,1.01042 -0.503907,1.304688 c -0.333337,0.294273 -0.826826,0.441409 -1.480468,0.441406 l -0.992188,0 l 0,2.34375 l -0.789062,0 l 0,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6284"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 20.065951,9.2575712 l 0,0.7695308 C 19.766468,9.8838783 19.483916,9.7771076 19.218295,9.70679 C 18.952667,9.6364827 18.696157,9.6013265 18.448764,9.6013212 c -0.42969,5.3e-6 -0.761721,0.083339 -0.996094,0.25 c -0.231772,0.1666718 -0.347657,0.4036508 -0.347656,0.7109378 c -1e-6,0.257816 0.07682,0.453129 0.230469,0.585937 c 0.156248,0.130212 0.450518,0.235681 0.882812,0.316406 l 0.476563,0.09766 c 0.588538,0.111982 1.022131,0.309899 1.300781,0.59375 c 0.281245,0.281252 0.42187,0.658856 0.421875,1.132812 c -5e-6,0.565105 -0.190109,0.99349 -0.570313,1.285156 c -0.377608,0.291667 -0.932294,0.4375 -1.664062,0.4375 c -0.276044,0 -0.570314,-0.03125 -0.882813,-0.09375 c -0.309897,-0.0625 -0.631511,-0.154947 -0.964843,-0.277343 l 0,-0.8125 c 0.320311,0.179688 0.634113,0.315105 0.941406,0.40625 c 0.30729,0.09115 0.609373,0.136719 0.90625,0.136718 c 0.450518,10e-7 0.798174,-0.08854 1.042969,-0.265625 c 0.244788,-0.177082 0.367183,-0.429686 0.367187,-0.757812 c -4e-6,-0.286457 -0.08854,-0.510415 -0.265625,-0.671875 c -0.174482,-0.161456 -0.462243,-0.28255 -0.863281,-0.363281 L 17.98392,12.218512 C 17.395377,12.101327 16.969596,11.917733 16.706576,11.66773 c -0.263021,-0.249996 -0.394531,-0.597652 -0.394531,-1.042968 c 0,-0.51562 0.180989,-0.9218701 0.542969,-1.2187503 C 17.219596,9.1091425 17.720897,8.9607052 18.35892,8.9606992 c 0.273435,6e-6 0.55208,0.024746 0.835938,0.074219 c 0.28385,0.049485 0.574214,0.1237036 0.871093,0.2226562"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6286"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="gps-sats-label"
|
||||
transform="translate(0,6.488519)">
|
||||
<path
|
||||
d="m 9.0347013,26.257572 l 0,0.769531 C 8.7352182,26.883879 8.4526664,26.777109 8.1870451,26.706791 C 7.9214169,26.636484 7.6649068,26.601327 7.4175138,26.601322 c -0.4296897,5e-6 -0.7617206,0.08334 -0.9960937,0.25 C 6.1896478,27.017994 6.0737625,27.254973 6.0737638,27.56226 c -1.3e-6,0.257816 0.076822,0.453129 0.2304688,0.585937 c 0.1562483,0.130212 0.4505188,0.235681 0.8828125,0.316406 l 0.4765625,0.09766 c 0.5885382,0.111982 1.0221315,0.309899 1.3007812,0.59375 c 0.2812456,0.281252 0.4218704,0.658856 0.421875,1.132812 c -4.6e-6,0.565105 -0.1901086,0.99349 -0.5703125,1.285156 c -0.3776078,0.291667 -0.9322947,0.4375 -1.6640625,0.4375 c -0.2760437,0 -0.5703143,-0.03125 -0.8828125,-0.09375 C 5.9591793,31.855231 5.637565,31.762784 5.3042326,31.640388 l 0,-0.8125 c 0.3203116,0.179688 0.6341134,0.315105 0.9414062,0.40625 c 0.3072899,0.09115 0.6093729,0.136719 0.90625,0.136718 c 0.450518,1e-6 0.7981739,-0.08854 1.0429688,-0.265625 c 0.244788,-0.177082 0.3671837,-0.429686 0.3671875,-0.757812 c -3.8e-6,-0.286457 -0.088545,-0.510415 -0.265625,-0.671875 C 8.1219376,29.514085 7.8341774,29.392991 7.4331388,29.31226 L 6.9526701,29.21851 C 6.3641268,29.101325 5.938346,28.917731 5.6753263,28.667728 C 5.4123049,28.417732 5.2807946,28.070076 5.2807951,27.62476 c -5e-7,-0.515621 0.1809889,-0.92187 0.5429687,-1.21875 c 0.3645819,-0.29687 0.8658835,-0.445307 1.5039063,-0.445313 c 0.2734346,6e-6 0.5520802,0.02475 0.8359375,0.07422 c 0.2838505,0.04949 0.5742148,0.123704 0.8710937,0.222656"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6289"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 12.573764,29.698978 c -0.580731,3e-6 -0.983075,0.06641 -1.207031,0.199219 c -0.22396,0.132815 -0.335939,0.359377 -0.335938,0.679688 c -10e-7,0.255209 0.08333,0.458334 0.25,0.609375 c 0.169269,0.148438 0.398436,0.222656 0.6875,0.222656 c 0.398435,0 0.717445,-0.140624 0.957031,-0.421875 c 0.242185,-0.283853 0.363278,-0.660155 0.363282,-1.128906 l 0,-0.160157 l -0.714844,0 m 1.433594,-0.296875 l 0,2.496094 l -0.71875,0 l 0,-0.664062 c -0.164066,0.265625 -0.368493,0.462239 -0.613282,0.589843 c -0.244794,0.125 -0.544273,0.1875 -0.898437,0.1875 c -0.447918,0 -0.804689,-0.125 -1.070313,-0.375 C 10.443555,31.383875 10.312045,31.046636 10.312045,30.62476 c 0,-0.492186 0.164062,-0.863279 0.492188,-1.113282 c 0.330727,-0.249997 0.822914,-0.374997 1.476562,-0.375 l 1.007813,0 l 0,-0.07031 c -4e-6,-0.330726 -0.109379,-0.585934 -0.328125,-0.765625 C 12.744334,28.118255 12.439647,28.027109 12.04642,28.027105 c -0.250002,4e-6 -0.493491,0.02995 -0.730469,0.08984 c -0.23698,0.0599 -0.464844,0.149743 -0.683593,0.269531 l 0,-0.664062 c 0.263019,-0.101558 0.518227,-0.177079 0.765625,-0.226563 c 0.247394,-0.05208 0.488279,-0.07812 0.722656,-0.07813 c 0.632809,5e-6 1.105465,0.164067 1.417969,0.492188 c 0.312496,0.328129 0.468745,0.825524 0.46875,1.492187"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6291"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 16.20267,26.28101 l 0,1.242187 l 1.480469,0 l 0,0.558594 l -1.480469,0 l 0,2.375 c -1e-6,0.356772 0.04818,0.585938 0.144531,0.6875 c 0.09896,0.101563 0.298176,0.152344 0.597657,0.152344 l 0.738281,0 l 0,0.601562 l -0.738281,0 c -0.55469,0 -0.937502,-0.102864 -1.148438,-0.308594 c -0.210938,-0.208332 -0.316407,-0.585936 -0.316406,-1.132812 l 0,-2.375 l -0.527344,0 l 0,-0.558594 l 0.527344,0 l 0,-1.242187 l 0.722656,0"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6293"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 21.42142,27.652103 l 0,0.679688 c -0.203128,-0.104163 -0.414066,-0.182288 -0.632812,-0.234375 c -0.218753,-0.05208 -0.445315,-0.07812 -0.679688,-0.07813 c -0.356773,4e-6 -0.625002,0.05469 -0.804687,0.164062 c -0.177085,0.109379 -0.265627,0.273441 -0.265625,0.492188 c -2e-6,0.16667 0.0638,0.29818 0.191406,0.394531 c 0.127603,0.09375 0.384113,0.183597 0.769531,0.269531 l 0.246094,0.05469 c 0.510414,0.109377 0.872392,0.264325 1.085937,0.464844 c 0.216143,0.197918 0.324215,0.475262 0.324219,0.832031 c -4e-6,0.406251 -0.161462,0.727865 -0.484375,0.964844 c -0.320315,0.236979 -0.761721,0.355468 -1.324219,0.355468 c -0.234376,0 -0.479168,-0.02344 -0.734375,-0.07031 c -0.252605,-0.04427 -0.519532,-0.111979 -0.800781,-0.203125 l 0,-0.742188 c 0.265624,0.138022 0.527343,0.242189 0.785156,0.3125 c 0.257811,0.06771 0.513019,0.101563 0.765625,0.101563 c 0.33854,0 0.598956,-0.05729 0.78125,-0.171875 c 0.182289,-0.117187 0.273435,-0.281249 0.273438,-0.492188 c -3e-6,-0.195311 -0.06641,-0.34505 -0.199219,-0.449218 c -0.130211,-0.104165 -0.417971,-0.204426 -0.863281,-0.300782 l -0.25,-0.05859 C 19.1597,29.843512 18.838086,29.700285 18.64017,29.507574 c -0.197917,-0.19531 -0.296875,-0.462237 -0.296875,-0.800781 c 0,-0.411455 0.145833,-0.729163 0.4375,-0.953125 c 0.291666,-0.223954 0.705728,-0.335933 1.242188,-0.335938 c 0.265622,5e-6 0.515622,0.01954 0.75,0.05859 c 0.234371,0.03907 0.450517,0.09766 0.648437,0.175781"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6295"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="telemetry-tx-label"
|
||||
transform="translate(0,-3.08992)">
|
||||
<path
|
||||
d="m 96.455605,9.2578888 l 4.933595,0 l 0,0.6640625 l -2.070314,0 l 0,5.1679687 l -0.792969,0 l 0,-5.1679687 l -2.070312,0 l 0,-0.6640625"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6303"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 105.76029,10.71492 l -1.58203,2.128906 l 1.66406,2.246094 l -0.84765,0 l -1.27344,-1.71875 l -1.27344,1.71875 l -0.84765,0 l 1.69921,-2.289062 l -1.55468,-2.085938 l 0.84765,0 l 1.16016,1.558594 l 1.16016,-1.558594 l 0.84765,0"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6305"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="telemetry-rx-label"
|
||||
transform="translate(0,-2.08992)">
|
||||
<path
|
||||
d="m 100.02982,29.355545 c 0.16927,0.05729 0.33333,0.17969 0.49219,0.367188 c 0.16145,0.187502 0.32291,0.445314 0.48438,0.773437 l 0.80078,1.59375 l -0.84766,0 l -0.74609,-1.496094 c -0.19271,-0.390623 -0.380215,-0.649737 -0.562503,-0.777343 c -0.17969,-0.127602 -0.425784,-0.191404 -0.738281,-0.191407 l -0.859375,0 l 0,2.464844 l -0.789063,0 l 0,-5.832031 l 1.78125,0 c 0.666664,6e-6 1.164062,0.139328 1.492192,0.417969 c 0.32812,0.278651 0.49218,0.699223 0.49218,1.261718 c 0,0.367192 -0.0859,0.671879 -0.25781,0.914063 c -0.16927,0.24219 -0.41667,0.410159 -0.74219,0.503906 m -1.976559,-2.449219 l 0,2.070313 l 0.992187,0 c 0.380206,3e-6 0.666664,-0.08724 0.859375,-0.261719 c 0.195307,-0.17708 0.292967,-0.436194 0.292967,-0.777344 c 0,-0.341141 -0.0977,-0.597651 -0.292967,-0.769531 c -0.192711,-0.174474 -0.479169,-0.261714 -0.859375,-0.261719 l -0.992187,0"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6308"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 106.43217,27.71492 l -1.58203,2.128906 l 1.66406,2.246094 l -0.84766,0 l -1.27344,-1.71875 l -1.27343,1.71875 l -0.84766,0 l 1.69922,-2.289062 l -1.55469,-2.085938 l 0.84766,0 l 1.16015,1.558594 l 1.16016,-1.558594 l 0.84766,0"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6310"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="throttle-label"
|
||||
transform="translate(0,-3.203204)">
|
||||
<path
|
||||
d="m 489.4556,9.2578888 l 4.93359,0 l 0,0.6640625 l -2.07031,0 l 0,5.1679687 l -0.79297,0 l 0,-5.1679687 l -2.07031,0 l 0,-0.6640625"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6458"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 498.76028,12.449295 l 0,2.640625 l -0.71875,0 l 0,-2.617187 c 0,-0.41406 -0.0807,-0.723955 -0.24218,-0.929688 c -0.16146,-0.205725 -0.40365,-0.30859 -0.72657,-0.308594 c -0.38802,4e-6 -0.69401,0.123702 -0.91796,0.371094 c -0.22396,0.247399 -0.33594,0.584638 -0.33594,1.011719 l 0,2.472656 l -0.72266,0 l 0,-6.078125 l 0.72266,0 l 0,2.382813 c 0.17187,-0.263017 0.37369,-0.459632 0.60547,-0.589844 c 0.23437,-0.130204 0.5039,-0.195308 0.80859,-0.195313 c 0.5026,5e-6 0.88281,0.156255 1.14063,0.46875 c 0.2578,0.3099 0.38671,0.766931 0.38671,1.371094"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6460"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 502.73685,11.386795 c -0.0807,-0.04687 -0.16928,-0.08072 -0.26563,-0.101562 c -0.0937,-0.02343 -0.19792,-0.03515 -0.3125,-0.03516 c -0.40625,4e-6 -0.71875,0.132817 -0.9375,0.398438 c -0.21615,0.263024 -0.32422,0.64193 -0.32422,1.136719 l 0,2.304687 l -0.72265,0 l 0,-4.375 l 0.72265,0 l 0,0.679688 c 0.15104,-0.265621 0.34766,-0.462236 0.58985,-0.589844 c 0.24218,-0.130204 0.53645,-0.195308 0.88281,-0.195313 c 0.0495,5e-6 0.10416,0.0039 0.16406,0.01172 c 0.0599,0.0052 0.1263,0.01433 0.19922,0.02734 l 0.004,0.738281"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6462"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 505.022,11.218826 c -0.38542,4e-6 -0.6901,0.151046 -0.91406,0.453125 c -0.22396,0.299483 -0.33594,0.710941 -0.33594,1.234375 c 0,0.523439 0.11068,0.936199 0.33203,1.238282 c 0.22396,0.299479 0.52995,0.449219 0.91797,0.449218 c 0.38281,10e-7 0.6862,-0.151041 0.91016,-0.453125 c 0.22395,-0.302082 0.33593,-0.71354 0.33594,-1.234375 c -1e-5,-0.518226 -0.11199,-0.928382 -0.33594,-1.230468 C 505.7082,11.371174 505.40481,11.21883 505.022,11.218826 m 0,-0.609375 c 0.625,5e-6 1.11589,0.20313 1.47266,0.609375 c 0.35677,0.406254 0.53515,0.968753 0.53516,1.6875 c -10e-6,0.716148 -0.17839,1.278647 -0.53516,1.6875 c -0.35677,0.40625 -0.84766,0.609375 -1.47266,0.609375 c -0.6276,0 -1.11979,-0.203125 -1.47656,-0.609375 c -0.35417,-0.408853 -0.53125,-0.971352 -0.53125,-1.6875 c 0,-0.718747 0.17708,-1.281246 0.53125,-1.6875 c 0.35677,-0.406245 0.84896,-0.60937 1.47656,-0.609375"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6464"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 508.92825,9.4727325 l 0,1.2421875 l 1.48047,0 l 0,0.558594 l -1.48047,0 l 0,2.375 c 0,0.356772 0.0482,0.585938 0.14453,0.6875 c 0.099,0.101563 0.29818,0.152344 0.59766,0.152344 l 0.73828,0 l 0,0.601562 l -0.73828,0 c -0.55469,0 -0.9375,-0.102864 -1.14844,-0.308594 c -0.21094,-0.208333 -0.3164,-0.585936 -0.3164,-1.132812 l 0,-2.375 l -0.52735,0 l 0,-0.558594 l 0.52735,0 l 0,-1.2421875 l 0.72265,0"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6466"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 512.06888,9.4727325 l 0,1.2421875 l 1.48047,0 l 0,0.558594 l -1.48047,0 l 0,2.375 c 0,0.356772 0.0482,0.585938 0.14453,0.6875 c 0.099,0.101563 0.29817,0.152344 0.59766,0.152344 l 0.73828,0 l 0,0.601562 l -0.73828,0 c -0.55469,0 -0.93751,-0.102864 -1.14844,-0.308594 c -0.21094,-0.208333 -0.31641,-0.585936 -0.31641,-1.132812 l 0,-2.375 l -0.52734,0 l 0,-0.558594 l 0.52734,0 l 0,-1.2421875 l 0.72266,0"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6468"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 514.49857,9.011795 l 0.71875,0 l 0,6.078125 l -0.71875,0 l 0,-6.078125"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6470"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 520.4595,12.722733 l 0,0.351562 l -3.30468,0 c 0.0312,0.494793 0.17968,0.872397 0.44531,1.132813 c 0.26823,0.257813 0.64062,0.386719 1.11719,0.386718 c 0.27603,10e-7 0.54296,-0.03385 0.80078,-0.101562 c 0.26041,-0.06771 0.51822,-0.16927 0.77343,-0.304688 l 0,0.679688 c -0.25781,0.109375 -0.52213,0.192708 -0.79296,0.25 c -0.27084,0.05729 -0.54558,0.08594 -0.82422,0.08594 c -0.69792,0 -1.25131,-0.203125 -1.66016,-0.609375 c -0.40625,-0.406249 -0.60937,-0.955727 -0.60937,-1.648437 c 0,-0.716143 0.1927,-1.283851 0.57812,-1.703125 c 0.38802,-0.421871 0.91015,-0.632808 1.56641,-0.632813 c 0.58854,5e-6 1.05338,0.190109 1.39453,0.570313 c 0.34374,0.377607 0.51562,0.89193 0.51562,1.542969 m -0.71875,-0.210938 c -0.005,-0.393226 -0.11589,-0.707028 -0.33203,-0.941406 c -0.21354,-0.234371 -0.4974,-0.351559 -0.85156,-0.351563 c -0.40104,4e-6 -0.72266,0.113285 -0.96484,0.339844 c -0.23959,0.226566 -0.37761,0.545576 -0.41407,0.957031 l 2.5625,-0.0039"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6472"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="battery-amp-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
transform="matrix(1,0,0,1.0375459,-5.79738,-3.7697649)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4614"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="m 632.01025,27.035233 l -1.07031,2.902343 l 2.14453,0 l -1.07422,-2.902343 m -0.44531,-0.777344 l 0.89453,0 l 2.22266,5.832031 l -0.82031,0 l -0.53125,-1.496094 l -2.62891,0 l -0.53125,1.496094 l -0.83203,0 l 2.22656,-5.832031" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="battery-volt-label"
|
||||
transform="matrix(1,0,0,1.0375459,0,-3.0939387)">
|
||||
<path
|
||||
d="M 625.76807,14.08992 L 623.5415,8.2578888 l 0.82422,0 l 1.84766,4.9101562 l 1.85156,-4.9101562 l 0.82031,0 L 626.6626,14.08992 l -0.89453,0"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6809"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
transform="translate(0,-2.08992)" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-label"
|
||||
transform="matrix(1.0375459,0,0,1.0375459,-7.161678,-3.5667345)">
|
||||
transform="matrix(1.7146685,0,0,1.7146685,-176.95942,-5.87421)">
|
||||
<path
|
||||
d="m 190.74466,9.2578888 l 0.79687,0 l 1.22657,4.9296872 l 1.22265,-4.9296872 l 0.88672,0 l 1.22656,4.9296872 l 1.22266,-4.9296872 l 0.80078,0 l -1.46484,5.8320312 l -0.99219,0 l -1.23047,-5.0625 l -1.24219,5.0625 l -0.99218,0 l -1.46094,-5.8320312"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
@ -1727,7 +1941,7 @@
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-heading-label"
|
||||
transform="translate(0,-3.00017)">
|
||||
transform="matrix(1.6526792,0,0,1.6526792,-165.99391,-4.9162026)">
|
||||
<path
|
||||
d="m 191.26419,24.257889 l 0.78906,0 l 0,2.390625 l 2.86719,0 l 0,-2.390625 l 0.78906,0 l 0,5.832031 l -0.78906,0 l 0,-2.777344 l -2.86719,0 l 0,2.777344 l -0.78906,0 l 0,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
@ -1747,7 +1961,7 @@
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-distance-label"
|
||||
transform="translate(0,-3.00017)">
|
||||
transform="matrix(1.6526792,0,0,1.6526792,-194.69489,-29.916207)">
|
||||
<path
|
||||
d="m 278.05325,24.906326 l 0,4.535157 l 0.95313,0 c 0.80468,0 1.39322,-0.182291 1.76562,-0.546875 c 0.375,-0.364582 0.5625,-0.940102 0.5625,-1.726563 c 0,-0.781246 -0.1875,-1.35286 -0.5625,-1.714844 c -0.3724,-0.364578 -0.96094,-0.54687 -1.76562,-0.546875 l -0.95313,0 m -0.78906,-0.648437 l 1.62109,0 c 1.13021,6e-6 1.95964,0.235682 2.48829,0.707031 c 0.52864,0.468755 0.79296,1.203129 0.79296,2.203125 c 0,1.00521 -0.26563,1.743491 -0.79687,2.214844 c -0.53125,0.471354 -1.35938,0.707031 -2.48438,0.707031 l -1.62109,0 l 0,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
@ -1770,7 +1984,7 @@
|
||||
d="m 290.04935,24.257889 l 4.93359,0 l 0,0.664062 l -2.07031,0 l 0,5.167969 l -0.79297,0 l 0,-5.167969 l -2.07031,0 l 0,-0.664062" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,12.99983)"
|
||||
transform="matrix(1.6526118,0,0,1.6526118,-194.77079,-4.9141713)"
|
||||
id="waypoint-total-distance-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
@ -1809,7 +2023,7 @@
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-mode-label"
|
||||
transform="translate(0,-3.113201)">
|
||||
transform="matrix(1.6526792,0,0,1.6526792,-155.46815,-5.1260141)">
|
||||
<path
|
||||
d="m 316.26419,9.2578888 l 1.17578,0 l 1.48828,3.9687502 l 1.4961,-3.9687502 l 1.17578,0 l 0,5.8320312 l -0.76953,0 l 0,-5.1210937 l -1.50391,3.9999997 l -0.79297,0 l -1.5039,-3.9999997 l 0,5.1210937 l -0.76563,0 l 0,-5.8320312"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
@ -1834,7 +2048,7 @@
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-eta-label"
|
||||
transform="matrix(1.0375459,0,0,1.0375459,-14.202279,-4.0166731)">
|
||||
transform="matrix(1.7146685,0,0,1.7146685,-265.93598,-6.5942385)">
|
||||
<path
|
||||
d="m 378.26419,24.257889 l 3.6875,0 l 0,0.664062 l -2.89844,0 l 0,1.726563 l 2.77735,0 l 0,0.664062 l -2.77735,0 l 0,2.113282 l 2.96875,0 l 0,0.664062 l -3.75781,0 l 0,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
@ -1851,221 +2065,74 @@
|
||||
id="path6806"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4727"
|
||||
inkscape:label="battery"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer66"
|
||||
inkscape:label="battery-milliamp-text"
|
||||
transform="translate(0,1.768481)"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="battery-milliamp-text"
|
||||
transform="translate(0,16.75)">
|
||||
transform="matrix(0.89658208,0,0,1.0166066,0.62788103,-5.1809092)"
|
||||
style="display:inline"
|
||||
id="g8787">
|
||||
<rect
|
||||
style="fill:#323232;fill-opacity:1;stroke:#e1e1e1;stroke-width:1.57115781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect8777"
|
||||
width="9.2307692"
|
||||
height="15.384616"
|
||||
x="-9.2110806"
|
||||
y="30.104883"
|
||||
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" />
|
||||
<path
|
||||
d="m 572.57764,32.938553 l 0,-0.898438 c 0.24739,0.117189 0.49804,0.206707 0.75195,0.268555 c 0.2539,0.06185 0.50293,0.09277 0.74707,0.09277 c 0.65104,10e-7 1.14746,-0.218098 1.48926,-0.654296 c 0.34505,-0.439452 0.54199,-1.105141 0.59082,-1.997071 c -0.18881,0.279951 -0.42807,0.494795 -0.71778,0.644532 c -0.28971,0.149742 -0.61035,0.224611 -0.96191,0.224609 c -0.72917,2e-6 -1.30697,-0.219724 -1.7334,-0.65918 c -0.42318,-0.442705 -0.63476,-1.046545 -0.63476,-1.811523 c 0,-0.748692 0.22135,-1.349278 0.66406,-1.801758 c 0.44271,-0.452467 1.0319,-0.678704 1.76758,-0.678711 c 0.84309,7e-6 1.486,0.3239 1.92871,0.97168 c 0.44596,0.644537 0.66894,1.582036 0.66894,2.8125 c 0,1.149091 -0.27344,2.067059 -0.82031,2.753906 c -0.54362,0.683594 -1.27604,1.02539 -2.19726,1.025391 c -0.2474,-10e-7 -0.49805,-0.02441 -0.75196,-0.07324 c -0.25391,-0.04883 -0.51758,-0.12207 -0.79101,-0.219726 m 1.96289,-3.09082 c 0.4427,3e-6 0.79264,-0.151364 1.0498,-0.454102 c 0.26041,-0.30273 0.39062,-0.717769 0.39063,-1.245117 c -10e-6,-0.524083 -0.13022,-0.937494 -0.39063,-1.240235 c -0.25716,-0.305983 -0.6071,-0.458977 -1.0498,-0.458984 c -0.44271,7e-6 -0.79428,0.153001 -1.05469,0.458984 c -0.25716,0.302741 -0.38574,0.716152 -0.38574,1.240235 c 0,0.527348 0.12858,0.942387 0.38574,1.245117 c 0.26041,0.302738 0.61198,0.454105 1.05469,0.454102"
|
||||
style="fill:#ffffff"
|
||||
id="path6494"
|
||||
inkscape:connector-curvature="0" />
|
||||
style="fill:#787878;fill-opacity:1;stroke:#e0dfe1;stroke-width:1.57115781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 6.071295,40.854862 l 8.702853,-8.702852 l 3.698713,-0.652713 c 1.081677,1.081677 2.282834,2.282834 3.263569,3.263569 c 0.543928,0.543928 -0.435142,3.916284 -0.435142,3.916284 l -8.702853,8.702852 z"
|
||||
id="path8779"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
d="m 578.94482,32.938553 l 0,-0.898438 c 0.2474,0.117189 0.49805,0.206707 0.75196,0.268555 c 0.2539,0.06185 0.50292,0.09277 0.74707,0.09277 c 0.65104,10e-7 1.14745,-0.218098 1.48926,-0.654296 c 0.34504,-0.439452 0.54198,-1.105141 0.59082,-1.997071 c -0.18881,0.279951 -0.42807,0.494795 -0.71778,0.644532 c -0.28971,0.149742 -0.61035,0.224611 -0.96191,0.224609 c -0.72917,2e-6 -1.30697,-0.219724 -1.7334,-0.65918 c -0.42318,-0.442705 -0.63477,-1.046545 -0.63477,-1.811523 c 0,-0.748692 0.22136,-1.349278 0.66407,-1.801758 c 0.4427,-0.452467 1.0319,-0.678704 1.76757,-0.678711 c 0.8431,7e-6 1.486,0.3239 1.92872,0.97168 c 0.44595,0.644537 0.66894,1.582036 0.66894,2.8125 c 0,1.149091 -0.27344,2.067059 -0.82031,2.753906 c -0.54363,0.683594 -1.27605,1.02539 -2.19727,1.025391 c -0.2474,-10e-7 -0.49805,-0.02441 -0.75195,-0.07324 c -0.25391,-0.04883 -0.51758,-0.12207 -0.79102,-0.219726 m 1.96289,-3.09082 c 0.44271,3e-6 0.79264,-0.151364 1.04981,-0.454102 c 0.26041,-0.30273 0.39062,-0.717769 0.39062,-1.245117 c 0,-0.524083 -0.13021,-0.937494 -0.39062,-1.240235 c -0.25717,-0.305983 -0.6071,-0.458977 -1.04981,-0.458984 c -0.44271,7e-6 -0.79427,0.153001 -1.05468,0.458984 c -0.25717,0.302741 -0.38575,0.716152 -0.38574,1.240235 c -1e-5,0.527348 0.12857,0.942387 0.38574,1.245117 c 0.26041,0.302738 0.61197,0.454105 1.05468,0.454102"
|
||||
style="fill:#ffffff"
|
||||
id="path6496"
|
||||
inkscape:connector-curvature="0" />
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#e0dfe1;stroke-width:2.55313134;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path8781"
|
||||
sodipodi:cx="77"
|
||||
sodipodi:cy="-18"
|
||||
sodipodi:rx="9"
|
||||
sodipodi:ry="9"
|
||||
d="m 86,-18 a 9,9 0 0 1 -13.5,7.794229"
|
||||
transform="matrix(0.59409,-0.16048456,0.16048456,0.59409,-14.282595,58.387875)"
|
||||
sodipodi:start="0"
|
||||
sodipodi:end="2.0943951"
|
||||
sodipodi:open="true" />
|
||||
<path
|
||||
d="m 585.31201,32.938553 l 0,-0.898438 c 0.2474,0.117189 0.49805,0.206707 0.75195,0.268555 c 0.25391,0.06185 0.50293,0.09277 0.74708,0.09277 c 0.65103,10e-7 1.14745,-0.218098 1.48925,-0.654296 c 0.34505,-0.439452 0.54199,-1.105141 0.59082,-1.997071 c -0.1888,0.279951 -0.42806,0.494795 -0.71777,0.644532 c -0.28972,0.149742 -0.61036,0.224611 -0.96191,0.224609 c -0.72917,2e-6 -1.30697,-0.219724 -1.7334,-0.65918 c -0.42318,-0.442705 -0.63477,-1.046545 -0.63477,-1.811523 c 0,-0.748692 0.22136,-1.349278 0.66406,-1.801758 c 0.44271,-0.452467 1.0319,-0.678704 1.76758,-0.678711 c 0.8431,7e-6 1.486,0.3239 1.92871,0.97168 c 0.44596,0.644537 0.66894,1.582036 0.66895,2.8125 c -10e-6,1.149091 -0.27344,2.067059 -0.82031,2.753906 c -0.54363,0.683594 -1.27605,1.02539 -2.19727,1.025391 c -0.2474,-10e-7 -0.49805,-0.02441 -0.75195,-0.07324 c -0.25391,-0.04883 -0.51758,-0.12207 -0.79102,-0.219726 m 1.96289,-3.09082 c 0.44271,3e-6 0.79264,-0.151364 1.04981,-0.454102 c 0.26041,-0.30273 0.39062,-0.717769 0.39062,-1.245117 c 0,-0.524083 -0.13021,-0.937494 -0.39062,-1.240235 c -0.25717,-0.305983 -0.6071,-0.458977 -1.04981,-0.458984 c -0.44271,7e-6 -0.79427,0.153001 -1.05469,0.458984 c -0.25716,0.302741 -0.38574,0.716152 -0.38574,1.240235 c 0,0.527348 0.12858,0.942387 0.38574,1.245117 c 0.26042,0.302738 0.61198,0.454105 1.05469,0.454102"
|
||||
style="fill:#ffffff"
|
||||
id="path6498"
|
||||
inkscape:connector-curvature="0" />
|
||||
sodipodi:open="true"
|
||||
sodipodi:end="2.0943951"
|
||||
sodipodi:start="0"
|
||||
transform="matrix(0.94346447,-0.22256175,0.2922493,0.96228953,-38.3717,70.240727)"
|
||||
d="m 86,-18 a 9,9 0 0 1 -13.5,7.794229"
|
||||
sodipodi:ry="9"
|
||||
sodipodi:rx="9"
|
||||
sodipodi:cy="-18"
|
||||
sodipodi:cx="77"
|
||||
id="path8783"
|
||||
style="fill:none;stroke:#e0dfe1;stroke-width:1.59286559;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
d="m 591.6792,32.938553 l 0,-0.898438 c 0.24739,0.117189 0.49804,0.206707 0.75195,0.268555 c 0.25391,0.06185 0.50293,0.09277 0.74707,0.09277 c 0.65104,10e-7 1.14746,-0.218098 1.48926,-0.654296 c 0.34505,-0.439452 0.54199,-1.105141 0.59082,-1.997071 c -0.18881,0.279951 -0.42806,0.494795 -0.71777,0.644532 c -0.28972,0.149742 -0.61036,0.224611 -0.96192,0.224609 c -0.72917,2e-6 -1.30696,-0.219724 -1.7334,-0.65918 c -0.42317,-0.442705 -0.63476,-1.046545 -0.63476,-1.811523 c 0,-0.748692 0.22135,-1.349278 0.66406,-1.801758 c 0.44271,-0.452467 1.0319,-0.678704 1.76758,-0.678711 c 0.84309,7e-6 1.486,0.3239 1.92871,0.97168 c 0.44596,0.644537 0.66894,1.582036 0.66895,2.8125 c -10e-6,1.149091 -0.27345,2.067059 -0.82032,2.753906 c -0.54362,0.683594 -1.27604,1.02539 -2.19726,1.025391 c -0.2474,-10e-7 -0.49805,-0.02441 -0.75196,-0.07324 c -0.2539,-0.04883 -0.51757,-0.12207 -0.79101,-0.219726 m 1.96289,-3.09082 c 0.4427,3e-6 0.79264,-0.151364 1.0498,-0.454102 c 0.26042,-0.30273 0.39063,-0.717769 0.39063,-1.245117 c 0,-0.524083 -0.13021,-0.937494 -0.39063,-1.240235 c -0.25716,-0.305983 -0.6071,-0.458977 -1.0498,-0.458984 c -0.44271,7e-6 -0.79427,0.153001 -1.05469,0.458984 c -0.25716,0.302741 -0.38574,0.716152 -0.38574,1.240235 c 0,0.527348 0.12858,0.942387 0.38574,1.245117 c 0.26042,0.302738 0.61198,0.454105 1.05469,0.454102"
|
||||
style="fill:#ffffff"
|
||||
id="path6500"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 598.04639,32.938553 l 0,-0.898438 c 0.24739,0.117189 0.49804,0.206707 0.75195,0.268555 c 0.2539,0.06185 0.50293,0.09277 0.74707,0.09277 c 0.65104,10e-7 1.14746,-0.218098 1.48926,-0.654296 c 0.34505,-0.439452 0.54199,-1.105141 0.59082,-1.997071 c -0.18881,0.279951 -0.42807,0.494795 -0.71778,0.644532 c -0.28971,0.149742 -0.61035,0.224611 -0.96191,0.224609 c -0.72917,2e-6 -1.30697,-0.219724 -1.7334,-0.65918 c -0.42318,-0.442705 -0.63476,-1.046545 -0.63476,-1.811523 c 0,-0.748692 0.22135,-1.349278 0.66406,-1.801758 c 0.44271,-0.452467 1.0319,-0.678704 1.76758,-0.678711 c 0.84309,7e-6 1.486,0.3239 1.92871,0.97168 c 0.44596,0.644537 0.66894,1.582036 0.66894,2.8125 c 0,1.149091 -0.27344,2.067059 -0.82031,2.753906 c -0.54362,0.683594 -1.27604,1.02539 -2.19726,1.025391 c -0.2474,-10e-7 -0.49805,-0.02441 -0.75196,-0.07324 c -0.25391,-0.04883 -0.51758,-0.12207 -0.79101,-0.219726 m 1.96289,-3.09082 c 0.4427,3e-6 0.79264,-0.151364 1.0498,-0.454102 c 0.26041,-0.30273 0.39062,-0.717769 0.39063,-1.245117 c -10e-6,-0.524083 -0.13022,-0.937494 -0.39063,-1.240235 c -0.25716,-0.305983 -0.6071,-0.458977 -1.0498,-0.458984 c -0.44271,7e-6 -0.79428,0.153001 -1.05469,0.458984 c -0.25716,0.302741 -0.38574,0.716152 -0.38574,1.240235 c 0,0.527348 0.12858,0.942387 0.38574,1.245117 c 0.26041,0.302738 0.61198,0.454105 1.05469,0.454102"
|
||||
style="fill:#ffffff"
|
||||
id="path6502"
|
||||
inkscape:connector-curvature="0" />
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8785"
|
||||
d="m 34.355566,12.570595 l -8.702852,8.702849 L 25,24.972157 c 1.081677,1.081678 2.282835,2.282835 3.263569,3.263569 c 0.543929,0.543929 3.916285,-0.435142 3.916285,-0.435142 l 8.702852,-8.702853 z"
|
||||
style="fill:#787878;fill-opacity:1;stroke:#e0dfe1;stroke-width:1.57115781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="battery-amp-text"
|
||||
id="layer64"
|
||||
inkscape:groupmode="layer"
|
||||
transform="translate(0,0.768478)"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="battery-amp-text"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
transform="translate(0,17)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4599"
|
||||
style="fill:#ffffff"
|
||||
d="m 575.65771,9.449295 c -0.50781,6.7e-6 -0.8903,0.2506575 -1.14746,0.751953 c -0.2539,0.498052 -0.38086,1.248377 -0.38086,2.250977 c 0,0.999351 0.12696,1.749676 0.38086,2.250976 c 0.25716,0.498048 0.63965,0.747071 1.14746,0.747071 c 0.51107,0 0.89356,-0.249023 1.14747,-0.747071 c 0.25715,-0.5013 0.38573,-1.251625 0.38574,-2.250976 c -10e-6,-1.0026 -0.12859,-1.752925 -0.38574,-2.250977 c -0.25391,-0.5012955 -0.6364,-0.7519463 -1.14747,-0.751953 m 0,-0.78125 c 0.81706,7.5e-6 1.44043,0.3239004 1.87012,0.9716797 c 0.43294,0.6445373 0.64941,1.5820363 0.64942,2.8125003 c -10e-6,1.227216 -0.21648,2.164715 -0.64942,2.8125 c -0.42969,0.644531 -1.05306,0.966796 -1.87012,0.966797 c -0.81705,-10e-7 -1.44205,-0.322266 -1.875,-0.966797 c -0.42968,-0.647785 -0.64453,-1.585284 -0.64453,-2.8125 c 0,-1.230464 0.21485,-2.167963 0.64453,-2.8125003 c 0.43295,-0.6477793 1.05795,-0.9716722 1.875,-0.9716797" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4602"
|
||||
style="fill:#ffffff"
|
||||
d="m 582.0249,9.449295 c -0.50781,6.7e-6 -0.8903,0.2506575 -1.14746,0.751953 c -0.25391,0.498052 -0.38086,1.248377 -0.38086,2.250977 c 0,0.999351 0.12695,1.749676 0.38086,2.250976 c 0.25716,0.498048 0.63965,0.747071 1.14746,0.747071 c 0.51107,0 0.89355,-0.249023 1.14746,-0.747071 c 0.25716,-0.5013 0.38574,-1.251625 0.38575,-2.250976 c -1e-5,-1.0026 -0.12859,-1.752925 -0.38575,-2.250977 C 582.91845,9.6999525 582.53597,9.4493017 582.0249,9.449295 m 0,-0.78125 c 0.81706,7.5e-6 1.44043,0.3239004 1.87012,0.9716797 c 0.43294,0.6445373 0.64941,1.5820363 0.64941,2.8125003 c 0,1.227216 -0.21647,2.164715 -0.64941,2.8125 c -0.42969,0.644531 -1.05306,0.966796 -1.87012,0.966797 c -0.81706,-10e-7 -1.44206,-0.322266 -1.875,-0.966797 c -0.42969,-0.647785 -0.64453,-1.585284 -0.64453,-2.8125 c 0,-1.230464 0.21484,-2.167963 0.64453,-2.8125003 c 0.43294,-0.6477793 1.05794,-0.9716722 1.875,-0.9716797" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4604"
|
||||
style="fill:#ffffff"
|
||||
d="m 586.28271,14.849686 l 1.03028,0 l 0,1.240234 l -1.03028,0 l 0,-1.240234" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4606"
|
||||
style="fill:#ffffff"
|
||||
d="m 591.57568,9.449295 c -0.50781,6.7e-6 -0.8903,0.2506575 -1.14746,0.751953 c -0.25391,0.498052 -0.38086,1.248377 -0.38086,2.250977 c 0,0.999351 0.12695,1.749676 0.38086,2.250976 c 0.25716,0.498048 0.63965,0.747071 1.14746,0.747071 c 0.51107,0 0.89355,-0.249023 1.14746,-0.747071 c 0.25716,-0.5013 0.38574,-1.251625 0.38575,-2.250976 c -10e-6,-1.0026 -0.12859,-1.752925 -0.38575,-2.250977 c -0.25391,-0.5012955 -0.63639,-0.7519463 -1.14746,-0.751953 m 0,-0.78125 c 0.81706,7.5e-6 1.44043,0.3239004 1.87012,0.9716797 c 0.43294,0.6445373 0.64941,1.5820363 0.64941,2.8125003 c 0,1.227216 -0.21647,2.164715 -0.64941,2.8125 c -0.42969,0.644531 -1.05306,0.966796 -1.87012,0.966797 c -0.81706,-10e-7 -1.44206,-0.322266 -1.875,-0.966797 c -0.42968,-0.647785 -0.64453,-1.585284 -0.64453,-2.8125 c 0,-1.230464 0.21485,-2.167963 0.64453,-2.8125003 c 0.43294,-0.6477793 1.05794,-0.9716722 1.875,-0.9716797" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4608"
|
||||
style="fill:#ffffff"
|
||||
d="m 597.94287,9.449295 c -0.50781,6.7e-6 -0.8903,0.2506575 -1.14746,0.751953 c -0.25391,0.498052 -0.38086,1.248377 -0.38086,2.250977 c 0,0.999351 0.12695,1.749676 0.38086,2.250976 c 0.25716,0.498048 0.63965,0.747071 1.14746,0.747071 c 0.51107,0 0.89355,-0.249023 1.14746,-0.747071 c 0.25716,-0.5013 0.38574,-1.251625 0.38574,-2.250976 c 0,-1.0026 -0.12858,-1.752925 -0.38574,-2.250977 c -0.25391,-0.5012955 -0.63639,-0.7519463 -1.14746,-0.751953 m 0,-0.78125 c 0.81705,7.5e-6 1.44043,0.3239004 1.87012,0.9716797 c 0.43294,0.6445373 0.64941,1.5820363 0.64941,2.8125003 c 0,1.227216 -0.21647,2.164715 -0.64941,2.8125 c -0.42969,0.644531 -1.05307,0.966796 -1.87012,0.966797 c -0.81706,-10e-7 -1.44206,-0.322266 -1.875,-0.966797 c -0.42969,-0.647785 -0.64453,-1.585284 -0.64453,-2.8125 c 0,-1.230464 0.21484,-2.167963 0.64453,-2.8125003 c 0.43294,-0.6477793 1.05794,-0.9716722 1.875,-0.9716797" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer65"
|
||||
inkscape:label="battery-volt-text"
|
||||
transform="translate(0,-1.231522)">
|
||||
<g
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="battery-volt-text"
|
||||
transform="translate(0,2)">
|
||||
<path
|
||||
d="m 575.65771,8.449295 c -0.50781,6.7e-6 -0.8903,0.2506575 -1.14746,0.751953 c -0.2539,0.498052 -0.38086,1.248377 -0.38086,2.250977 c 0,0.999351 0.12696,1.749676 0.38086,2.250976 c 0.25716,0.498048 0.63965,0.747071 1.14746,0.747071 c 0.51107,0 0.89356,-0.249023 1.14747,-0.747071 c 0.25715,-0.5013 0.38573,-1.251625 0.38574,-2.250976 c -10e-6,-1.0026 -0.12859,-1.752925 -0.38574,-2.250977 c -0.25391,-0.5012955 -0.6364,-0.7519463 -1.14747,-0.751953 m 0,-0.78125 c 0.81706,7.5e-6 1.44043,0.3239004 1.87012,0.9716797 c 0.43294,0.6445373 0.64941,1.5820363 0.64942,2.8125003 c -10e-6,1.227216 -0.21648,2.164715 -0.64942,2.8125 c -0.42969,0.644531 -1.05306,0.966796 -1.87012,0.966797 c -0.81705,-10e-7 -1.44205,-0.322266 -1.875,-0.966797 c -0.42968,-0.647785 -0.64453,-1.585284 -0.64453,-2.8125 c 0,-1.230464 0.21485,-2.167963 0.64453,-2.8125003 c 0.43295,-0.6477793 1.05795,-0.9716722 1.875,-0.9716797"
|
||||
style="fill:#ffffff"
|
||||
id="path6483"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 582.0249,8.449295 c -0.50781,6.7e-6 -0.8903,0.2506575 -1.14746,0.751953 c -0.25391,0.498052 -0.38086,1.248377 -0.38086,2.250977 c 0,0.999351 0.12695,1.749676 0.38086,2.250976 c 0.25716,0.498048 0.63965,0.747071 1.14746,0.747071 c 0.51107,0 0.89355,-0.249023 1.14746,-0.747071 c 0.25716,-0.5013 0.38574,-1.251625 0.38575,-2.250976 c -1e-5,-1.0026 -0.12859,-1.752925 -0.38575,-2.250977 C 582.91845,8.6999525 582.53597,8.4493017 582.0249,8.449295 m 0,-0.78125 c 0.81706,7.5e-6 1.44043,0.3239004 1.87012,0.9716797 c 0.43294,0.6445373 0.64941,1.5820363 0.64941,2.8125003 c 0,1.227216 -0.21647,2.164715 -0.64941,2.8125 c -0.42969,0.644531 -1.05306,0.966796 -1.87012,0.966797 c -0.81706,-10e-7 -1.44206,-0.322266 -1.875,-0.966797 c -0.42969,-0.647785 -0.64453,-1.585284 -0.64453,-2.8125 c 0,-1.230464 0.21484,-2.167963 0.64453,-2.8125003 c 0.43294,-0.6477793 1.05794,-0.9716722 1.875,-0.9716797"
|
||||
style="fill:#ffffff"
|
||||
id="path6485"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 586.28271,13.849686 l 1.03028,0 l 0,1.240234 l -1.03028,0 l 0,-1.240234"
|
||||
style="fill:#ffffff"
|
||||
id="path6487"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 591.57568,8.449295 c -0.50781,6.7e-6 -0.8903,0.2506575 -1.14746,0.751953 c -0.25391,0.498052 -0.38086,1.248377 -0.38086,2.250977 c 0,0.999351 0.12695,1.749676 0.38086,2.250976 c 0.25716,0.498048 0.63965,0.747071 1.14746,0.747071 c 0.51107,0 0.89355,-0.249023 1.14746,-0.747071 c 0.25716,-0.5013 0.38574,-1.251625 0.38575,-2.250976 c -10e-6,-1.0026 -0.12859,-1.752925 -0.38575,-2.250977 c -0.25391,-0.5012955 -0.63639,-0.7519463 -1.14746,-0.751953 m 0,-0.78125 c 0.81706,7.5e-6 1.44043,0.3239004 1.87012,0.9716797 c 0.43294,0.6445373 0.64941,1.5820363 0.64941,2.8125003 c 0,1.227216 -0.21647,2.164715 -0.64941,2.8125 c -0.42969,0.644531 -1.05306,0.966796 -1.87012,0.966797 c -0.81706,-10e-7 -1.44206,-0.322266 -1.875,-0.966797 c -0.42968,-0.647785 -0.64453,-1.585284 -0.64453,-2.8125 c 0,-1.230464 0.21485,-2.167963 0.64453,-2.8125003 c 0.43294,-0.6477793 1.05794,-0.9716722 1.875,-0.9716797"
|
||||
style="fill:#ffffff"
|
||||
id="path6489"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 597.94287,8.449295 c -0.50781,6.7e-6 -0.8903,0.2506575 -1.14746,0.751953 c -0.25391,0.498052 -0.38086,1.248377 -0.38086,2.250977 c 0,0.999351 0.12695,1.749676 0.38086,2.250976 c 0.25716,0.498048 0.63965,0.747071 1.14746,0.747071 c 0.51107,0 0.89355,-0.249023 1.14746,-0.747071 c 0.25716,-0.5013 0.38574,-1.251625 0.38574,-2.250976 c 0,-1.0026 -0.12858,-1.752925 -0.38574,-2.250977 c -0.25391,-0.5012955 -0.63639,-0.7519463 -1.14746,-0.751953 m 0,-0.78125 c 0.81705,7.5e-6 1.44043,0.3239004 1.87012,0.9716797 c 0.43294,0.6445373 0.64941,1.5820363 0.64941,2.8125003 c 0,1.227216 -0.21647,2.164715 -0.64941,2.8125 c -0.42969,0.644531 -1.05307,0.966796 -1.87012,0.966797 c -0.81706,-10e-7 -1.44206,-0.322266 -1.875,-0.966797 c -0.42969,-0.647785 -0.64453,-1.585284 -0.64453,-2.8125 c 0,-1.230464 0.21484,-2.167963 0.64453,-2.8125003 c 0.43294,-0.6477793 1.05794,-0.9716722 1.875,-0.9716797"
|
||||
style="fill:#ffffff"
|
||||
id="path6491"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer63"
|
||||
inkscape:label="throttle"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:#008080;stroke:#000000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 469.86993,48.85 l 0,-2.5"
|
||||
id="eng0"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="eng1"
|
||||
d="m 469.86993,48.85 l 0,-2.5"
|
||||
style="fill:#008080;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:label="#path10211"
|
||||
style="fill:none;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 477.38975,48.85 l 0,-5.000001"
|
||||
id="eng2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:label="#path10213"
|
||||
inkscape:connector-curvature="0"
|
||||
id="eng3"
|
||||
d="m 484.90956,48.85 l 0,-7.500001"
|
||||
style="fill:none;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:label="#path10215"
|
||||
style="fill:none;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 492.42936,48.85 l 0,-10"
|
||||
id="eng4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:label="#path10217"
|
||||
inkscape:connector-curvature="0"
|
||||
id="eng5"
|
||||
d="m 499.94918,48.85 l 0,-12.500001"
|
||||
style="fill:none;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:label="#path10219"
|
||||
style="fill:none;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 507.46898,48.85 l 0,-15.000001"
|
||||
id="eng6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:label="#path10221"
|
||||
inkscape:connector-curvature="0"
|
||||
id="eng7"
|
||||
d="m 514.98879,48.85 l 0,-17.500001"
|
||||
style="fill:none;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:label="#path10223"
|
||||
style="fill:none;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 522.5086,48.85 l 0,-20.000002"
|
||||
id="eng8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:label="#path10225"
|
||||
inkscape:connector-curvature="0"
|
||||
id="eng9"
|
||||
d="m 530.02841,48.85 l 0,-22.500001"
|
||||
style="fill:none;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:label="#path10227"
|
||||
style="fill:none;stroke:#008000;stroke-width:8.30000019;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 537.54822,48.85 l 0,-25.000001"
|
||||
id="eng10"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer58"
|
||||
inkscape:label="waypoint"
|
||||
style="display:inline">
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer20"
|
||||
inkscape:label="waypoint-eta-text">
|
||||
inkscape:label="waypoint-eta-text"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-eta-text"
|
||||
transform="translate(0,0.595158)">
|
||||
transform="matrix(1.1017861,0,0,1.1017861,61.29339,14.558341)">
|
||||
<path
|
||||
d="m 400.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
@ -2111,11 +2178,12 @@
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer61"
|
||||
inkscape:label="waypoint-distance-text">
|
||||
inkscape:label="waypoint-distance-text"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-distance-text"
|
||||
transform="translate(0,0.595158)">
|
||||
transform="matrix(1.1017861,0,0,1.1017861,17.436688,-10.441659)">
|
||||
<path
|
||||
d="m 303.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
@ -2161,11 +2229,12 @@
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer60"
|
||||
inkscape:label="waypoint-heading-text">
|
||||
inkscape:label="waypoint-heading-text"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-heading-text"
|
||||
transform="translate(2,0.595158)">
|
||||
transform="matrix(1.1017861,0,0,1.1017861,-11.977973,14.558341)">
|
||||
<path
|
||||
d="m 216.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
@ -2186,11 +2255,12 @@
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer18"
|
||||
inkscape:label="waypoint-mode-text">
|
||||
inkscape:label="waypoint-mode-text"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-mode-text"
|
||||
transform="translate(0,0.595158)">
|
||||
transform="matrix(1.0767613,0,0,1.0767613,127.81017,6.4920314)">
|
||||
<path
|
||||
d="m 346.84036,8.3145294 l 0,6.8027346 l 1.42969,0 c 1.20703,10e-7 2.08984,-0.273436 2.64844,-0.820313 c 0.56249,-0.546872 0.84374,-1.410153 0.84375,-2.589843 c -1e-5,-1.17187 -0.28126,-2.0292909 -0.84375,-2.5722661 c -0.5586,-0.5468675 -1.44141,-0.8203047 -2.64844,-0.8203125 l -1.42969,0 m -1.18359,-0.9726562 l 2.43164,0 c 1.69531,8.7e-6 2.93945,0.353524 3.73242,1.0605468 c 0.79296,0.703132 1.18945,1.804693 1.18945,3.304688 c 0,1.507815 -0.39844,2.615236 -1.19531,3.322265 c -0.79688,0.707032 -2.03907,1.060547 -3.72656,1.060547 l -2.43164,0 l 0,-8.7480468"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
@ -2277,11 +2347,12 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer56"
|
||||
inkscape:label="waypoint-description-text"
|
||||
style="display:inline">
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-description-text"
|
||||
transform="translate(30,0.595158)">
|
||||
transform="matrix(1.0767613,0,0,1.0767613,19.497871,6.4920315)">
|
||||
<path
|
||||
d="m 217.92825,10.523514 l 0,-3.5507815 l 1.07813,0 l 0,9.1171875 l -1.07813,0 l 0,-0.984375 c -0.22656,0.390626 -0.51367,0.681641 -0.86132,0.873047 c -0.34376,0.1875 -0.75782,0.28125 -1.24219,0.28125 c -0.79297,0 -1.43946,-0.316406 -1.93946,-0.949219 c -0.49609,-0.632811 -0.74414,-1.464841 -0.74414,-2.496094 c 0,-1.031245 0.24805,-1.863276 0.74414,-2.496093 c 0.5,-0.6328064 1.14649,-0.9492124 1.93946,-0.9492191 c 0.48437,6.7e-6 0.89843,0.09571 1.24219,0.2871094 c 0.34765,0.1875062 0.63476,0.4765687 0.86132,0.8671877 m -3.67382,2.291015 c -1e-5,0.792972 0.1621,1.416018 0.48632,1.869141 c 0.32813,0.44922 0.77734,0.673829 1.34766,0.673828 c 0.57031,1e-6 1.01953,-0.224608 1.34766,-0.673828 c 0.32812,-0.453123 0.49218,-1.076169 0.49218,-1.869141 c 0,-0.792964 -0.16406,-1.414057 -0.49218,-1.863281 c -0.32813,-0.453119 -0.77735,-0.679682 -1.34766,-0.679687 c -0.57032,5e-6 -1.01953,0.226568 -1.34766,0.679687 c -0.32422,0.449224 -0.48633,1.070317 -0.48632,1.863281"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
@ -2339,7 +2410,7 @@
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-82,0.595158)"
|
||||
transform="matrix(1.1609977,0,0,1.1609977,-116.51603,5.3196393)"
|
||||
id="waypoint-number-text"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
@ -2353,9 +2424,10 @@
|
||||
inkscape:label="waypoint-total-distance-text"
|
||||
id="g3878"
|
||||
inkscape:groupmode="layer"
|
||||
transform="translate(0,16)">
|
||||
transform="translate(0,16)"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
transform="translate(0,0.595158)"
|
||||
transform="matrix(1.1017861,0,0,1.1017861,17.436688,-1.4416594)"
|
||||
id="waypoint-total-distance-text"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
@ -2403,402 +2475,26 @@
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer59"
|
||||
inkscape:label="telemetry"
|
||||
id="layer57"
|
||||
inkscape:label="gps"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer45"
|
||||
inkscape:label="telemetry-status"
|
||||
style="display:inline"
|
||||
transform="translate(0,0.863767)"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
transform="translate(-8,6.595328)"
|
||||
style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="telemetry-status">
|
||||
<path
|
||||
d="m 128.40151,44.014168 l 0,-6.313477 l -2.3584,0 l 0,-0.844726 l 5.67383,0 l 0,0.844726 l -2.36816,0 l 0,6.313477 l -0.94727,0"
|
||||
id="path4935"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 131.76577,44.014168 l 0,-1.000977 l 1.00098,0 l 0,1.000977 l -1.00098,0"
|
||||
id="path4937"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 134.08999,41.714363 l 0.89355,-0.07813 c 0.0423,0.358075 0.13998,0.652671 0.29297,0.883789 c 0.15625,0.227866 0.39714,0.413413 0.72266,0.556641 c 0.32552,0.139975 0.69173,0.209961 1.09863,0.209961 c 0.36133,0 0.68034,-0.05371 0.95703,-0.161133 c 0.27669,-0.107421 0.48177,-0.253905 0.61524,-0.439453 c 0.13671,-0.188801 0.20507,-0.393879 0.20507,-0.615235 c 0,-0.224607 -0.0651,-0.419919 -0.19531,-0.585937 c -0.13021,-0.169268 -0.34505,-0.31087 -0.64453,-0.424805 c -0.19206,-0.07487 -0.61686,-0.190426 -1.27441,-0.346679 c -0.65756,-0.159502 -1.11817,-0.309242 -1.38184,-0.449219 c -0.3418,-0.179033 -0.59733,-0.400387 -0.7666,-0.664063 c -0.16602,-0.266922 -0.24902,-0.564773 -0.24902,-0.893554 c 0,-0.361323 0.10253,-0.698237 0.30761,-1.010743 c 0.20508,-0.315748 0.50456,-0.555006 0.89844,-0.717773 c 0.39388,-0.162753 0.8317,-0.244133 1.31348,-0.244141 c 0.53059,8e-6 0.99771,0.08627 1.40136,0.258789 c 0.4069,0.169278 0.7194,0.419929 0.9375,0.751954 c 0.2181,0.332037 0.33529,0.708013 0.35157,1.127929 l -0.90821,0.06836 c -0.0488,-0.452469 -0.21484,-0.794265 -0.49804,-1.025391 c -0.27996,-0.231113 -0.69499,-0.346673 -1.24512,-0.34668 c -0.57292,7e-6 -0.99121,0.105801 -1.25488,0.317383 c -0.26042,0.208339 -0.39063,0.460618 -0.39063,0.756836 c 0,0.257167 0.0928,0.468755 0.27832,0.634766 c 0.18229,0.16602 0.65755,0.336918 1.42578,0.512695 c 0.77148,0.17253 1.30045,0.323897 1.58692,0.454102 c 0.41666,0.19206 0.72428,0.436201 0.92285,0.732421 c 0.19856,0.292972 0.29784,0.631513 0.29785,1.015625 c -1e-5,0.380861 -0.10905,0.740562 -0.32715,1.079102 c -0.2181,0.335287 -0.53223,0.597331 -0.94238,0.786133 c -0.40691,0.185547 -0.86589,0.27832 -1.37695,0.27832 c -0.64779,0 -1.19141,-0.0944 -1.63086,-0.283203 c -0.4362,-0.188802 -0.77963,-0.472005 -1.03028,-0.849609 c -0.24739,-0.380858 -0.3776,-0.810545 -0.39062,-1.289063"
|
||||
id="path4939"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 142.89858,43.228035 l 0.12696,0.776367 c -0.2474,0.05208 -0.46876,0.07813 -0.66407,0.07813 c -0.31901,0 -0.5664,-0.05046 -0.74218,-0.151367 c -0.17579,-0.100911 -0.29948,-0.232747 -0.3711,-0.395508 c -0.0716,-0.166015 -0.10742,-0.512694 -0.10742,-1.040039 l 0,-2.983398 l -0.64453,0 l 0,-0.683594 l 0.64453,0 l 0,-1.28418 l 0.87402,-0.527344 l 0,1.811524 l 0.88379,0 l 0,0.683594 l -0.88379,0 l 0,3.032226 c 0,0.250652 0.0146,0.411785 0.0439,0.483399 c 0.0325,0.07162 0.083,0.128581 0.15137,0.170898 c 0.0716,0.04232 0.17252,0.06348 0.30273,0.06348 c 0.0976,0 0.22623,-0.01139 0.38574,-0.03418"
|
||||
id="path4942"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 147.13686,43.374519 c -0.32552,0.276693 -0.63965,0.472006 -0.94238,0.585938 c -0.29948,0.113932 -0.62175,0.170898 -0.9668,0.170898 c -0.56966,0 -1.00748,-0.138346 -1.31347,-0.415039 c -0.30599,-0.279947 -0.45899,-0.636392 -0.45899,-1.069336 c 0,-0.253904 0.057,-0.485024 0.1709,-0.693359 c 0.11719,-0.211586 0.26856,-0.380857 0.4541,-0.507813 c 0.1888,-0.12695 0.40039,-0.222979 0.63477,-0.288086 c 0.17252,-0.04557 0.43294,-0.08951 0.78125,-0.131835 c 0.70963,-0.08463 1.23209,-0.185544 1.56738,-0.302735 c 0.003,-0.120439 0.005,-0.196936 0.005,-0.229492 c 0,-0.358069 -0.083,-0.610347 -0.24902,-0.756836 c -0.22461,-0.198563 -0.55827,-0.297847 -1.00098,-0.297852 c -0.41341,5e-6 -0.7194,0.07325 -0.91796,0.219727 c -0.19532,0.143233 -0.34018,0.398767 -0.43457,0.766602 l -0.85938,-0.117188 c 0.0781,-0.367834 0.20671,-0.664058 0.38574,-0.888672 c 0.17904,-0.22786 0.43783,-0.402013 0.77637,-0.522461 c 0.33854,-0.123692 0.73079,-0.185541 1.17676,-0.185547 c 0.4427,6e-6 0.8024,0.05209 1.0791,0.15625 c 0.27669,0.104172 0.48014,0.236008 0.61035,0.395508 c 0.1302,0.156255 0.22135,0.354822 0.27344,0.595703 c 0.0293,0.149744 0.0439,0.419926 0.0439,0.810547 l 0,1.171875 c 0,0.817059 0.0179,1.334636 0.0537,1.552735 c 0.0391,0.214844 0.11393,0.421549 0.22461,0.620117 l -0.91797,0 c -0.0911,-0.182292 -0.14974,-0.395508 -0.17578,-0.639649 m -0.0732,-1.96289 c -0.31901,0.130211 -0.79753,0.240888 -1.43555,0.332031 c -0.36133,0.05209 -0.61686,0.110679 -0.7666,0.175781 c -0.14974,0.06511 -0.2653,0.161135 -0.34668,0.288086 c -0.0814,0.1237 -0.12207,0.262046 -0.12207,0.415039 c 0,0.234376 0.0879,0.429689 0.26367,0.585938 c 0.17904,0.15625 0.43946,0.234375 0.78125,0.234375 c 0.33854,0 0.63965,-0.07324 0.90333,-0.219727 c 0.26366,-0.149738 0.45735,-0.353189 0.58105,-0.610351 c 0.0944,-0.198567 0.1416,-0.491535 0.1416,-0.878907 l 0,-0.322265"
|
||||
id="path4944"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 151.23843,43.228035 l 0.12695,0.776367 c -0.2474,0.05208 -0.46875,0.07813 -0.66406,0.07813 c -0.31902,0 -0.56641,-0.05046 -0.74219,-0.151367 c -0.17578,-0.100911 -0.29948,-0.232747 -0.37109,-0.395508 c -0.0716,-0.166015 -0.10743,-0.512694 -0.10743,-1.040039 l 0,-2.983398 l -0.64453,0 l 0,-0.683594 l 0.64453,0 l 0,-1.28418 l 0.87403,-0.527344 l 0,1.811524 l 0.88379,0 l 0,0.683594 l -0.88379,0 l 0,3.032226 c 0,0.250652 0.0146,0.411785 0.0439,0.483399 c 0.0325,0.07162 0.083,0.128581 0.15137,0.170898 c 0.0716,0.04232 0.17252,0.06348 0.30273,0.06348 c 0.0977,0 0.22624,-0.01139 0.38575,-0.03418"
|
||||
id="path4946"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 155.49136,44.014168 l 0,-0.761719 c -0.40365,0.585938 -0.95216,0.878906 -1.64551,0.878906 c -0.30599,0 -0.59245,-0.05859 -0.85938,-0.175781 c -0.26367,-0.117187 -0.46061,-0.263672 -0.59082,-0.439453 c -0.12695,-0.179036 -0.21647,-0.397135 -0.26855,-0.654297 c -0.0358,-0.172525 -0.0537,-0.445962 -0.0537,-0.820312 l 0,-3.212891 l 0.8789,0 l 0,2.875976 c 0,0.458987 0.0179,0.768231 0.0537,0.927735 c 0.0553,0.231121 0.17253,0.413412 0.35157,0.546875 c 0.17903,0.130209 0.40039,0.195313 0.66406,0.195312 c 0.26367,10e-7 0.51106,-0.06673 0.74219,-0.200195 c 0.23111,-0.136718 0.39387,-0.320637 0.48828,-0.551758 c 0.0976,-0.234373 0.14648,-0.572914 0.14648,-1.015625 l 0,-2.77832 l 0.87891,0 l 0,5.185547 l -0.78613,0"
|
||||
id="path4948"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 157.30776,42.466316 l 0.86914,-0.136719 c 0.0488,0.348309 0.18392,0.615236 0.40528,0.800782 c 0.2246,0.185547 0.5371,0.278321 0.9375,0.27832 c 0.40364,1e-6 0.70312,-0.08138 0.89843,-0.244141 c 0.19531,-0.166014 0.29297,-0.359699 0.29297,-0.581054 c 0,-0.198566 -0.0863,-0.354816 -0.25879,-0.46875 c -0.12044,-0.07812 -0.41992,-0.177407 -0.89843,-0.297852 c -0.64454,-0.162758 -1.09213,-0.302732 -1.34278,-0.419922 c -0.24739,-0.12044 -0.4362,-0.284828 -0.5664,-0.493164 c -0.12696,-0.211585 -0.19043,-0.444332 -0.19043,-0.698242 c 0,-0.231116 0.0521,-0.444332 0.15625,-0.639648 c 0.10742,-0.198563 0.25227,-0.362951 0.43457,-0.493164 c 0.13671,-0.100907 0.32226,-0.185542 0.55664,-0.253907 c 0.23763,-0.07161 0.49153,-0.107416 0.76172,-0.107422 c 0.40689,6e-6 0.76334,0.0586 1.06933,0.175782 c 0.30924,0.117192 0.53711,0.276697 0.6836,0.478515 c 0.14648,0.198572 0.24739,0.465499 0.30273,0.800782 l -0.85937,0.117187 c -0.0391,-0.266923 -0.153,-0.475256 -0.3418,-0.625 c -0.18555,-0.149735 -0.44922,-0.224605 -0.79102,-0.224609 c -0.40365,4e-6 -0.69173,0.06674 -0.86426,0.200195 c -0.17252,0.133468 -0.25879,0.289718 -0.25878,0.46875 c -10e-6,0.113936 0.0358,0.216475 0.10742,0.307617 c 0.0716,0.09441 0.18392,0.17253 0.33691,0.234375 c 0.0879,0.03256 0.34668,0.107425 0.77637,0.22461 c 0.62174,0.166018 1.05468,0.302737 1.29883,0.410156 c 0.24739,0.104169 0.44107,0.257164 0.58105,0.458984 c 0.13997,0.201825 0.20996,0.452476 0.20996,0.751953 c 0,0.29297 -0.0863,0.569663 -0.25879,0.830078 c -0.16927,0.257162 -0.41504,0.457357 -0.7373,0.600586 c -0.32227,0.139974 -0.68685,0.209961 -1.09375,0.209961 c -0.67383,0 -1.18815,-0.139974 -1.54297,-0.419922 c -0.35156,-0.279947 -0.57617,-0.694986 -0.67383,-1.245117"
|
||||
id="path4950"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer54"
|
||||
inkscape:label="telemetry-rx"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx0"
|
||||
d="m 110,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 114,36.5 l 0,-11.082914"
|
||||
id="rx1"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx2"
|
||||
d="m 116.5,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10211" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 119,36.5 l 0,-11.082914"
|
||||
id="rx3"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10213" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx4"
|
||||
d="m 121.5,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10215" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124,36.5 l 0,-11.082914"
|
||||
id="rx5"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10217" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx6"
|
||||
d="m 126.5,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10219" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 129,36.5 l 0,-11.082914"
|
||||
id="rx7"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10221" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx8"
|
||||
d="m 131.5,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10223" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 134,36.5 l 0,-11.082914"
|
||||
id="rx9"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx10"
|
||||
d="m 136.5,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10227" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx11"
|
||||
d="m 139,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 141.5,36.5 l 0,-11.082914"
|
||||
id="rx12"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx13"
|
||||
d="m 144,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 146.5,36.5 l 0,-11.082914"
|
||||
id="rx14"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx15"
|
||||
d="m 149,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 151.5,36.5 l 0,-11.082914"
|
||||
id="rx16"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx17"
|
||||
d="m 154,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 156.5,36.5 l 0,-11.082914"
|
||||
id="rx18"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx19"
|
||||
d="m 159,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 161.5,36.5 l 0,-11.082914"
|
||||
id="rx20"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx21"
|
||||
d="m 164,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff1400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 166.5,36.5 l 0,-11.082914"
|
||||
id="rx22"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx23"
|
||||
d="m 169,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff1400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff1400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 171.5,36.5 l 0,-11.082914"
|
||||
id="rx24"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rx25"
|
||||
d="m 174,36.5 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff1400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer55"
|
||||
inkscape:label="telemetry-tx"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="M 110,18.095328 L 110,7.012414"
|
||||
id="tx0"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx1"
|
||||
d="M 114,18.095328 L 114,7.012414"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
inkscape:label="#path10211"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 116.5,18.095328 l 0,-11.082914"
|
||||
id="tx2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:label="#path10213"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx3"
|
||||
d="M 119,18.095328 L 119,7.012414"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
inkscape:label="#path10215"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 121.5,18.095328 l 0,-11.082914"
|
||||
id="tx4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:label="#path10217"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx5"
|
||||
d="M 124,18.095328 L 124,7.012414"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
inkscape:label="#path10219"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 126.5,18.095328 l 0,-11.082914"
|
||||
id="tx6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:label="#path10221"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx7"
|
||||
d="M 129,18.095328 L 129,7.012414"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
inkscape:label="#path10223"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 131.5,18.095328 l 0,-11.082914"
|
||||
id="tx8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:label="#path10225"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx9"
|
||||
d="M 134,18.095328 L 134,7.012414"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
inkscape:label="#path10227"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 136.5,18.095328 l 0,-11.082914"
|
||||
id="tx10"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="M 139,18.095328 L 139,7.012414"
|
||||
id="tx11"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx12"
|
||||
d="m 141.5,18.095328 l 0,-11.082914"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="M 144,18.095328 L 144,7.012414"
|
||||
id="tx13"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx14"
|
||||
d="m 146.5,18.095328 l 0,-11.082914"
|
||||
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="M 149,18.095328 L 149,7.012414"
|
||||
id="tx15"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx16"
|
||||
d="m 151.5,18.095328 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="M 154,18.095328 L 154,7.012414"
|
||||
id="tx17"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx18"
|
||||
d="m 156.5,18.095328 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="M 159,18.095328 L 159,7.012414"
|
||||
id="tx19"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx20"
|
||||
d="m 161.5,18.095328 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff8000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="M 164,18.095328 L 164,7.012414"
|
||||
id="tx21"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx22"
|
||||
d="m 166.5,18.095328 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff1400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff1400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="M 169,18.095328 L 169,7.012414"
|
||||
id="tx23"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
<path
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="tx24"
|
||||
d="m 171.5,18.095328 l 0,-11.082914"
|
||||
style="fill:none;stroke:#ff1400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff1400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="M 174,18.095328 L 174,7.012414"
|
||||
id="tx25"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer57"
|
||||
inkscape:label="gps"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer53"
|
||||
inkscape:label="gps-sats"
|
||||
style="display:inline">
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps0"
|
||||
d="m 28,51.5 l 0,-5"
|
||||
d="m 55.41388,54 l 0,-9.532546"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 28,51.5 l 0,-5"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 55.41388,54 l 0,-9.532546"
|
||||
id="gps1"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180"
|
||||
@ -2806,13 +2502,13 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps2"
|
||||
d="m 34,51.5 l 0,-7"
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 66.241636,54 l 0,-13.345565"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10211"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 40,51.5 l 0,-9"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 77.069393,54 l 0,-17.158583"
|
||||
id="gps3"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10213"
|
||||
@ -2820,13 +2516,13 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps4"
|
||||
d="m 46,51.5 l 0,-11"
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 87.89715,54 l 0,-20.971601"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10215"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 52,51.5 l 0,-13"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 98.724906,54 l 0,-24.78462"
|
||||
id="gps5"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10217"
|
||||
@ -2834,13 +2530,13 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps6"
|
||||
d="m 58,51.5 l 0,-15"
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 109.55266,54 l 0,-28.597638"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10219"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 64,51.5 l 0,-17"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 120.38042,54 l 0,-32.410657"
|
||||
id="gps7"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10221"
|
||||
@ -2848,13 +2544,13 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps8"
|
||||
d="m 70,51.5 l 0,-19"
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 131.20817,54 l 0,-36.223675"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10223"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 76,51.5 l 0,-21"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 142.03593,54 l 0,-40.036693"
|
||||
id="gps9"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10225"
|
||||
@ -2862,8 +2558,8 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps10"
|
||||
d="m 82,51.5 l 0,-23"
|
||||
style="fill:none;stroke:#008000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 152.86369,54 l 0,-43.849712"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10227"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
@ -2872,11 +2568,12 @@
|
||||
id="layer52"
|
||||
inkscape:label="gps-mode-text"
|
||||
style="display:inline"
|
||||
transform="translate(0,-0.972157)">
|
||||
transform="translate(0,-0.972157)"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="gps-mode-text"
|
||||
transform="translate(0,1.5)">
|
||||
transform="matrix(1.4543578,0,0,1.4543578,-4.981688,1.3723646)">
|
||||
<path
|
||||
d="m 54.155106,11.899892 c 0.472,0.100915 0.839838,0.310876 1.103515,0.629883 c 0.266922,0.319013 0.400385,0.712893 0.400391,1.18164 c -6e-6,0.719403 -0.247401,1.276043 -0.742188,1.669922 c -0.494796,0.39388 -1.19792,0.59082 -2.109375,0.59082 c -0.305992,0 -0.621747,-0.03092 -0.947265,-0.09277 c -0.322267,-0.05859 -0.655926,-0.148112 -1.000977,-0.268555 l 0,-0.952148 c 0.273437,0.159506 0.572915,0.279949 0.898438,0.361328 c 0.325519,0.08138 0.665687,0.122071 1.020507,0.12207 c 0.618487,10e-7 1.088864,-0.122069 1.411133,-0.366211 c 0.325517,-0.244139 0.488277,-0.598956 0.488282,-1.064453 c -5e-6,-0.429685 -0.151372,-0.764971 -0.454102,-1.005859 c -0.299483,-0.244137 -0.717777,-0.366208 -1.254883,-0.366211 l -0.849609,0 l 0,-0.810547 l 0.888672,0 c 0.485022,4e-6 0.856116,-0.09602 1.113281,-0.288086 c 0.257157,-0.195308 0.385738,-0.475255 0.385742,-0.839844 C 54.506664,10.026525 54.3732,9.7400672 54.106277,9.5414934 C 53.842602,9.339677 53.46337,9.2387656 52.968582,9.238759 c -0.270185,6.6e-6 -0.559898,0.029303 -0.86914,0.087891 c -0.309247,0.0586 -0.649416,0.1497459 -1.020508,0.2734375 l 0,-0.8789063 c 0.374347,-0.1041594 0.724282,-0.1822844 1.049804,-0.234375 c 0.328774,-0.052076 0.638019,-0.078118 0.927735,-0.078125 c 0.748694,7.4e-6 1.341141,0.1709057 1.777344,0.5126953 c 0.436192,0.3385483 0.654291,0.7975322 0.654296,1.3769525 c -5e-6,0.403651 -0.115565,0.745448 -0.346679,1.025391 c -0.231125,0.276697 -0.559901,0.468754 -0.986328,0.576172"
|
||||
style="font-size:10px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
@ -2894,79 +2591,22 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer71"
|
||||
inkscape:label="info-border"
|
||||
style="display:inline">
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="info-border">
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="battery-milliamp-label"
|
||||
transform="matrix(1,0,0,1.0375514,-2,-2.6776728)">
|
||||
<path
|
||||
d="m 620.206,52 l 0,-4.224819 l 0.64048,0 l 0,0.592748 c 0.13261,-0.206861 0.30897,-0.372618 0.5291,-0.497271 c 0.22012,-0.127298 0.47075,-0.190948 0.75188,-0.190953 c 0.31294,5e-6 0.56887,0.06498 0.76778,0.194931 c 0.20156,0.129957 0.34345,0.311627 0.42567,0.545009 c 0.33416,-0.493289 0.76911,-0.739935 1.30484,-0.73994 c 0.41903,5e-6 0.74126,0.116698 0.96669,0.350079 c 0.22543,0.230738 0.33814,0.587447 0.33815,1.070129 l 0,2.900087 l -0.71209,0 l 0,-2.661397 c -10e-6,-0.286425 -0.0239,-0.491964 -0.0716,-0.616617 c -0.0451,-0.127298 -0.12863,-0.229404 -0.25063,-0.306319 c -0.122,-0.07691 -0.26521,-0.115363 -0.42964,-0.115367 c -0.29704,4e-6 -0.54369,0.09946 -0.73994,0.298363 c -0.19626,0.19626 -0.29439,0.511861 -0.29438,0.946805 l 0,2.454532 l -0.71608,0 l 0,-2.744939 c 0,-0.31825 -0.0583,-0.55694 -0.17503,-0.716071 c -0.1167,-0.159123 -0.30765,-0.238686 -0.57286,-0.23869 c -0.20156,4e-6 -0.38854,0.05305 -0.56092,0.159127 c -0.16974,0.106088 -0.29306,0.261237 -0.36997,0.465446 c -0.0769,0.204216 -0.11537,0.4986 -0.11537,0.883154 l 0,2.191973 l -0.71607,0"
|
||||
id="path4641"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 632.45877,52 l 0,-5.832 l 0.71607,0 l 0,2.092518 c 0.33416,-0.387204 0.75585,-0.580808 1.26506,-0.580813 c 0.31294,5e-6 0.58479,0.06233 0.81552,0.186974 c 0.23073,0.122002 0.39516,0.291737 0.4933,0.509206 c 0.10077,0.217477 0.15116,0.533079 0.15117,0.946805 l 0,2.67731 l -0.71607,0 l 0,-2.67731 c -10e-6,-0.358032 -0.0782,-0.617939 -0.23472,-0.779721 c -0.15382,-0.164428 -0.37262,-0.246643 -0.65639,-0.246647 c -0.21218,4e-6 -0.41241,0.0557 -0.60071,0.167083 c -0.18565,0.10874 -0.31825,0.257259 -0.39782,0.445555 c -0.0796,0.188304 -0.11934,0.44821 -0.11934,0.779722 l 0,2.311318 l -0.71607,0"
|
||||
id="path4645"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 626.46764,52 l 2.23971,-5.832 l 0.83144,0 l 2.3869,5.832 l -0.87917,0 l -0.68027,-1.766308 l -2.43862,0 L 627.28714,52 l -0.8195,0 m 1.68277,-2.394859 l 1.97715,0 l -0.60866,-1.615138 c -0.18565,-0.490637 -0.32356,-0.893758 -0.41373,-1.209364 c -0.0743,0.373953 -0.17902,0.745248 -0.31428,1.113888 l -0.64048,1.710614"
|
||||
id="path4643"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;display:inline"
|
||||
d="m 642,57.5 l -642.5,0"
|
||||
d="m 642,61.5 l -642.5,0"
|
||||
id="info-bg-top"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 90,40 l 90,0"
|
||||
id="path5067"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 460,57.5 l 0,-54"
|
||||
id="path10162"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4588"
|
||||
d="M 550.00548,39.5 L 642,39.5"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 180,57.5 l 0,-54"
|
||||
id="path10158"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10160"
|
||||
d="m 90,57.5 l 0,-54"
|
||||
d="M 166,61.500001 L 166,3.5000001"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10164"
|
||||
d="m 550,57.5 l 0,-54"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10341"
|
||||
d="M 550.00051,21.5 L 642,21.5"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m -0.5,22 l 180,0"
|
||||
id="path10166"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -2976,39 +2616,12 @@
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 25,51.418075 l 60,0.08193 l 0,-22.998652 l -6,-0.0014 l 0,22.992116 l -6,-0.0088 l 0,-20.97668 l 6,0.04472 l -6,-0.04472 l 0,2.12303 l -6,3.48e-4 l 0,18.845475 l -6,-0.0069 l 0.02494,-16.83188 L 67,34.629662 l -6.024941,0.007 l 0.02494,1.934623 l -6,-0.07128 l 0,14.959092 l -6,-0.0081 l 0,-12.950991 l 6,-3.28e-4 l -6,3.28e-4 l 0,2 l -6,0 l 0,10.942406 l 0,-8.942406 l -6,0 l 0,8.93472 l 0,-6.93472 l -6,0 l 0,6.926248 l 0,-4.926248 l -6,5e-6 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 50.000001,53.843809 l 108.277569,0.1562 l 0,-43.847141 l -10.82776,-0.0027 l 0,43.83468 l -10.82776,-0.01678 l 0,-39.992233 l 10.82776,0.08526 l -10.82776,-0.08526 l 0,4.047576 l -10.82775,6.63e-4 l 0,35.929072 l -10.82776,-0.01315 l 0.045,-32.090134 l 10.78275,-0.01335 l -10.87277,0.01335 l 0.045,3.688376 l -10.82774,-0.135867 l 0,28.519647 l -10.827754,-0.01544 l 0,-24.691183 l 10.827754,-6.26e-4 l -10.827754,6.26e-4 l 0,3.813018 l -10.827757,0 l 0,20.861798 l 0,-17.04878 l -10.827756,0 l 0,17.034126 l 0,-13.221107 l -10.827757,0 l 0,13.204955 l 0,-9.391937 L 50,44.467478 z"
|
||||
id="satbar-mask"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc"
|
||||
inkscape:label="satbar-mask" />
|
||||
<path
|
||||
inkscape:label="throttle-mask"
|
||||
inkscape:connector-curvature="0"
|
||||
id="throttle-mask"
|
||||
d="m 466.25101,52.7 c 77.55498,0 77.4,0 77.4,0 l 0,-35 l -77.4,25 l 0,10"
|
||||
style="fill:none;stroke:#000000;stroke-width:4.59999943;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<rect
|
||||
style="fill:none;stroke:#0c0f0c;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="tx-mask"
|
||||
width="64"
|
||||
height="12.5"
|
||||
x="112"
|
||||
y="2.5"
|
||||
transform="translate(0,4)"
|
||||
inkscape:label="tx-mask"
|
||||
ry="2.3730814" />
|
||||
<rect
|
||||
ry="2.3730814"
|
||||
inkscape:label="rx-mask"
|
||||
y="24.5"
|
||||
x="112"
|
||||
height="12.5"
|
||||
width="64"
|
||||
id="rx-mask"
|
||||
style="fill:none;stroke:#0c0f0c;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
rx="2.3730814" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -4465,7 +4078,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer17"
|
||||
inkscape:label="speed"
|
||||
style="display:none"
|
||||
style="display:inline"
|
||||
transform="translate(0,-4)"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
@ -5297,8 +4910,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer67"
|
||||
inkscape:label="warnings"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer68"
|
||||
@ -5325,6 +4937,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer82"
|
||||
inkscape:label="warning-thrustmode"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
style="display:inline"
|
||||
@ -5384,6 +4997,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer80"
|
||||
inkscape:label="warning-flightmode"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="warning-flightmode"
|
||||
@ -5650,6 +5264,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer78"
|
||||
inkscape:label="warning-arm"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="warning-arm"
|
||||
@ -5684,6 +5299,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer81"
|
||||
inkscape:label="warning-time"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="warning-time"
|
||||
@ -5753,81 +5369,16 @@
|
||||
x="306.73804"
|
||||
y="123.74039" /></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer77"
|
||||
inkscape:label="warning-battery"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="warning-battery"
|
||||
inkscape:label="#g4313"
|
||||
transform="matrix(0.99951655,0,0,1.532684,551.00855,-1.7168189)">
|
||||
<rect
|
||||
y="1.2"
|
||||
x="0"
|
||||
height="34.5"
|
||||
width="89"
|
||||
id="rect4402"
|
||||
style="fill:#ff0000;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4404"
|
||||
d="M 2.1088442,2.592752 L 86.716324,34.298858"
|
||||
style="fill:none;stroke:#ff0000;stroke-width:3.00662947;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff0000;stroke-width:3.00662947;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 86.716324,2.592752 L 2.1088442,34.298858"
|
||||
id="path4616"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer76"
|
||||
inkscape:label="warning-telemetry"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
transform="matrix(0.99951655,0,0,1.532684,91.008546,-1.7168189)"
|
||||
inkscape:label="#g4313"
|
||||
id="warning-telemetry"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#ff0000;fill-opacity:0.50196078;fill-rule:evenodd;stroke:none"
|
||||
id="rect4377"
|
||||
width="88"
|
||||
height="34.5"
|
||||
x="0"
|
||||
y="1.2" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff0000;stroke-width:3.00662947;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 2.2773164,2.8500377 L 85.494821,34.130511"
|
||||
id="path4379"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4611"
|
||||
d="M 85.494821,2.8500377 L 2.2773164,34.130511"
|
||||
style="fill:none;stroke:#ff0000;stroke-width:3.00662947;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer75"
|
||||
inkscape:label="warning-gps"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="warning-gps"
|
||||
inkscape:label="#g4313"
|
||||
transform="matrix(0.99951655,0,0,1.532684,0.008546,-1.7168189)">
|
||||
transform="matrix(1.8539326,0,0,1.6231884,0,-1.947826)">
|
||||
<rect
|
||||
y="1.2"
|
||||
x="0"
|
||||
@ -5840,9 +5391,9 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4309"
|
||||
d="M 2.3796722,2.8075235 L 86.665165,34.123438"
|
||||
style="fill:none;stroke:#ff0000;stroke-width:3.00634193;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
style="fill:none;stroke:#ff0000;stroke-width:2.14500451;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff0000;stroke-width:3.00634193;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
style="fill:none;stroke:#ff0000;stroke-width:2.14500451;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 86.665165,2.8075235 L 2.3796722,34.123438"
|
||||
id="path4607"
|
||||
inkscape:connector-curvature="0"
|
||||
@ -5855,10 +5406,9 @@
|
||||
id="layer13"
|
||||
inkscape:label="pfd-window"
|
||||
style="display:inline"
|
||||
transform="translate(0,-4)"
|
||||
sodipodi:insensitive="true">
|
||||
transform="translate(0,-4)">
|
||||
<rect
|
||||
style="fill:none;stroke:none;display:inline;fill-opacity:1;opacity:1"
|
||||
style="fill:none;stroke:none;display:inline"
|
||||
id="pfd-window"
|
||||
width="642"
|
||||
height="482"
|
||||
|
Before Width: | Height: | Size: 470 KiB After Width: | Height: | Size: 439 KiB |
Loading…
x
Reference in New Issue
Block a user