Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RTKLIB
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
labrobotica
algorithms
RTKLIB
Compare revisions
4ab9a199ff46b1220fb4fe99b019c8df526e53e9 to b26c0b5af2ac248b73b18cb113c676ff7156c414
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
labrobotica/algorithms/RTKLIB
Select target project
No results found
b26c0b5af2ac248b73b18cb113c676ff7156c414
Select Git revision
Branches
demo5
devel
Swap
Target
labrobotica/algorithms/RTKLIB
Select target project
labrobotica/algorithms/RTKLIB
1 result
4ab9a199ff46b1220fb4fe99b019c8df526e53e9
Select Git revision
Branches
demo5
devel
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
returning clock bias covariance in pntpos
· b26c0b5a
Joan Vallvé Navarro
authored
2 years ago
b26c0b5a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/pntpos.c
+5
-1
5 additions, 1 deletion
src/pntpos.c
src/rtklib.h
+2
-0
2 additions, 0 deletions
src/rtklib.h
with
7 additions
and
1 deletion
src/pntpos.c
View file @
b26c0b5a
...
...
@@ -470,7 +470,11 @@ static int estpos(const obsd_t *obs, int n, const double *rs, const double *dts,
for
(
j
=
0
;
j
<
3
;
j
++
)
sol
->
qr
[
j
]
=
(
float
)
Q
[
j
+
j
*
NX
];
sol
->
qr
[
3
]
=
(
float
)
Q
[
1
];
/* cov xy */
sol
->
qr
[
4
]
=
(
float
)
Q
[
2
+
NX
];
/* cov yz */
sol
->
qr
[
5
]
=
(
float
)
Q
[
2
];
/* cov zx */
sol
->
qr
[
5
]
=
(
float
)
Q
[
2
];
/* cov xz */
for
(
j
=
3
;
j
<
7
;
j
++
)
sol
->
qdtr
[
j
-
3
]
=
(
float
)
Q
[
j
+
j
*
NX
];
sol
->
qdtr
[
4
]
=
(
float
)
Q
[
3
];
/* cov xdt*/
sol
->
qdtr
[
5
]
=
(
float
)
Q
[
3
+
NX
];
/* cov ydt*/
sol
->
qdtr
[
6
]
=
(
float
)
Q
[
3
+
2
*
NX
];
/* cov zdt*/
sol
->
ns
=
(
unsigned
char
)
ns
;
sol
->
age
=
sol
->
ratio
=
0
.
0
;
...
...
This diff is collapsed.
Click to expand it.
src/rtklib.h
View file @
b26c0b5a
...
...
@@ -962,6 +962,8 @@ typedef struct { /* solution type */
/* {c_ee,c_nn,c_uu,c_en,c_nu,c_ue} */
float
qv
[
6
];
/* velocity variance/covariance (m^2/s^2) */
double
dtr
[
6
];
/* receiver clock bias to time systems (s) */
float
qdtr
[
7
];
/* receiver clock bias to time systems variance/covariance*/
/* {c_dtdt, c_GPS_GLO, c_GPS_GAL, c_GPS_CMP, c_xdt, c_ydt, czdt}*/
unsigned
char
type
;
/* type (0:xyz-ecef,1:enu-baseline) */
unsigned
char
stat
;
/* solution status (SOLQ_???) */
unsigned
char
ns
;
/* number of valid satellites */
...
...
This diff is collapsed.
Click to expand it.