-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGPSKalmanForm.dfm
95 lines (95 loc) · 1.83 KB
/
GPSKalmanForm.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
object GPSKalmanFilter: TGPSKalmanFilter
Left = 433
Top = 243
BorderStyle = bsDialog
Caption = 'Kalman Filter'
ClientHeight = 140
ClientWidth = 343
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
DesignSize = (
343
140)
PixelsPerInch = 96
TextHeight = 13
object ProgressBar: TProgressBar
Left = 8
Top = 114
Width = 329
Height = 16
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
end
object m_Ok: TButton
Left = 260
Top = 12
Width = 75
Height = 25
Caption = 'Start'
ModalResult = 1
TabOrder = 1
OnClick = m_OkClick
end
object m_Cancel: TButton
Left = 260
Top = 41
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
object Panel1: TPanel
Left = 8
Top = 8
Width = 241
Height = 97
BevelOuter = bvLowered
TabOrder = 3
object Label3: TLabel
Left = 8
Top = 18
Width = 125
Height = 13
Caption = 'Process noise covariance:'
end
object RValue: TEdit
Left = 176
Top = 14
Width = 46
Height = 21
BiDiMode = bdLeftToRight
ParentBiDiMode = False
TabOrder = 0
Text = '15'
OnKeyPress = ValueKeyPress
end
object SaveSpeed: TCheckBox
Left = 71
Top = 72
Width = 153
Height = 17
Alignment = taLeftJustify
Caption = 'Filter Speed and Course'
Checked = True
State = cbChecked
TabOrder = 1
end
object SaveAlt: TCheckBox
Left = 71
Top = 48
Width = 153
Height = 17
Alignment = taLeftJustify
Caption = 'Filter Altitude'
TabOrder = 2
end
end
end