Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multi-GNSS measurements using DCB both from the SSR correction stream and from BSX-file has been improved #737

Open
wants to merge 9 commits into
base: rtklib_2.4.3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added app/consapp/rtkrcv/gcc/rtkrcv
Binary file not shown.
6 changes: 6 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# RTKLIB 2.4.3 b34 with support differential code biases for GPS, GLONASS, Galileo

### For post-processing use BSX file by CAS (https://cddis.nasa.gov/Data_and_Derived_Products/GNSS/gnss_differential_code_bias_product.html)

### For real-time you can use any SSR-stream with DCB or use SSRA00CNE1 from IGS

270 changes: 0 additions & 270 deletions readme.txt

This file was deleted.

2 changes: 1 addition & 1 deletion src/ionex.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ extern void readtec(const char *file, nav_t *nav, int opt)

/* P1-P2 dcb */
for (i=0;i<MAXSAT;i++) {
nav->cbias[i][0]=CLIGHT*dcb[i]*1E-9; /* ns->m */
nav->cbias[i][0][0]=CLIGHT*dcb[i]*1E-9; /* ns->m */
}
}
/* interpolate tec grid data -------------------------------------------------*/
Expand Down
4 changes: 2 additions & 2 deletions src/pntpos.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ static double prange(const obsd_t *obs, const nav_t *nav, const prcopt_t *opt,

/* P1-C1,P2-C2 DCB correction */
if (sys==SYS_GPS||sys==SYS_GLO) {
if (obs->code[0]==CODE_L1C) P1+=nav->cbias[sat-1][1]; /* C1->P1 */
if (obs->code[1]==CODE_L2C) P2+=nav->cbias[sat-1][2]; /* C2->P2 */
if (obs->code[0]==CODE_L1C) P1+=nav->cbias[sat-1][1][1]; /* C1->P1 */
if (obs->code[1]==CODE_L2C) P2+=nav->cbias[sat-1][2][2]; /* C2->P2 */
}
if (opt->ionoopt==IONOOPT_IFLC) { /* dual-frequency */

Expand Down
Loading