fitDps graph changed to angle instead of transversal, also add units

This commit is contained in:
cncfanatics
2010-11-12 20:54:34 +01:00
parent 04661c5645
commit 0840be6f43
2 changed files with 6 additions and 6 deletions

2
eos

Submodule eos updated: c6dc4f2454...30cdb00f71

View File

@@ -26,15 +26,15 @@ import gui.mainFrame
import service
class FitDpsGraph(Graph):
propertyAttributeMap = {"transversal": "maxVelocity",
propertyAttributeMap = {"angle": "maxVelocity",
"distance": "maxRange",
"signatureRadius": "signatureRadius",
"velocity": "maxVelocity"}
propertyLabelMap = {"transversal": "Transversal Speed",
"distance": "Distance to Target",
"signatureRadius": "Target Signature Radius",
"velocity": "Target Velocity"}
propertyLabelMap = {"angle": "Target Angle (degrees)",
"distance": "Distance to Target (m)",
"signatureRadius": "Target Signature Radius (m)",
"velocity": "Target Velocity (m/s)"}
def __init__(self):
Graph.__init__(self)