Skip to content
Snippets Groups Projects
Commit 39e157a7 authored by Tim Everett's avatar Tim Everett
Browse files

- Make frequency options consistent between RNX2RTKP, RTKPOST, and RTKNAVI

- For code efficiency, E5b is included in the L2 computations, E5a in L5
parent bcb1a904
No related branches found
No related tags found
No related merge requests found
...@@ -62,8 +62,6 @@ object OptDialog: TOptDialog ...@@ -62,8 +62,6 @@ object OptDialog: TOptDialog
TabOrder = 4 TabOrder = 4
object TabSheet1: TTabSheet object TabSheet1: TTabSheet
Caption = 'Setting&1' Caption = 'Setting&1'
ExplicitLeft = 8
ExplicitTop = 22
object Label3: TLabel object Label3: TLabel
Left = 24 Left = 24
Top = 137 Top = 137
...@@ -214,14 +212,13 @@ object OptDialog: TOptDialog ...@@ -214,14 +212,13 @@ object OptDialog: TOptDialog
Width = 152 Width = 152
Height = 21 Height = 21
Style = csDropDownList Style = csDropDownList
ItemIndex = 1
TabOrder = 1 TabOrder = 1
Text = 'L1+L2'
OnChange = FreqChange OnChange = FreqChange
Items.Strings = ( Items.Strings = (
'L1' 'L1'
'L1+L2' 'L1+L2'
'L1+L2+L5') 'L1+L2+L5'
'L1+L2+L5+L6')
end end
object SatEphem: TComboBox object SatEphem: TComboBox
Left = 248 Left = 248
......
...@@ -105,8 +105,6 @@ object OptDialog: TOptDialog ...@@ -105,8 +105,6 @@ object OptDialog: TOptDialog
TabOrder = 4 TabOrder = 4
object TabSheet1: TTabSheet object TabSheet1: TTabSheet
Caption = 'Setting&1' Caption = 'Setting&1'
ExplicitLeft = 1
ExplicitTop = 21
object Label3: TLabel object Label3: TLabel
Left = 24 Left = 24
Top = 95 Top = 95
...@@ -246,13 +244,15 @@ object OptDialog: TOptDialog ...@@ -246,13 +244,15 @@ object OptDialog: TOptDialog
Width = 152 Width = 152
Height = 21 Height = 21
Style = csDropDownList Style = csDropDownList
ItemIndex = 1
TabOrder = 1 TabOrder = 1
Text = 'L1+L2'
OnChange = FreqChange OnChange = FreqChange
Items.Strings = ( Items.Strings = (
'L1' 'L1'
'L1+L2' 'L1+L2'
'L1+L2+E5b' 'L1+L2+L5'
'L1+L2+E5b+L5') 'L1+L2+L5+L6')
end end
object Solution: TComboBox object Solution: TComboBox
Left = 248 Left = 248
......
...@@ -40,7 +40,7 @@ static char snrmask_[NFREQ][1024]; ...@@ -40,7 +40,7 @@ static char snrmask_[NFREQ][1024];
/* system options table ------------------------------------------------------*/ /* system options table ------------------------------------------------------*/
#define SWTOPT "0:off,1:on" #define SWTOPT "0:off,1:on"
#define MODOPT "0:single,1:dgps,2:kinematic,3:static,4:static-start,5:movingbase,6:fixed,7:ppp-kine,8:ppp-static,9:ppp-fixed" #define MODOPT "0:single,1:dgps,2:kinematic,3:static,4:static-start,5:movingbase,6:fixed,7:ppp-kine,8:ppp-static,9:ppp-fixed"
#define FRQOPT "1:l1,2:l1+l2,3:l1+l2+l5,4:l1+l2+l5+l6,2:l1+l2+e5b" #define FRQOPT "1:l1,2:l1+l2,3:l1+l2+l5,4:l1+l2+l5+l6"
#define TYPOPT "0:forward,1:backward,2:combined" #define TYPOPT "0:forward,1:backward,2:combined"
#define IONOPT "0:off,1:brdc,2:sbas,3:dual-freq,4:est-stec,5:ionex-tec,6:qzs-brdc,7:qzs-lex,8:stec" #define IONOPT "0:off,1:brdc,2:sbas,3:dual-freq,4:est-stec,5:ionex-tec,6:qzs-brdc,7:qzs-lex,8:stec"
#define TRPOPT "0:off,1:saas,2:sbas,3:est-ztd,4:est-ztdgrad,5:ztd" #define TRPOPT "0:off,1:saas,2:sbas,3:est-ztd,4:est-ztdgrad,5:ztd"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment