Changeset 9008 in ntrip for branches/BNC_2.12/src


Ignore:
Timestamp:
Jul 24, 2020, 10:38:35 AM (4 years ago)
Author:
stuerze
Message:

some updates regarding IRNSS mesage numbers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/RTCM3/RTCM3Decoder.cpp

    r9003 r9008  
    316316static struct CodeData gal[RTCM3_MSM_NUMSIG] = {
    317317        {0.0, 0},
    318         {GAL_WAVELENGTH_E1, "1C"},
    319         {GAL_WAVELENGTH_E1, "1A"},
    320         {GAL_WAVELENGTH_E1, "1B"},
    321         {GAL_WAVELENGTH_E1, "1X"},
    322         {GAL_WAVELENGTH_E1, "1Z"},
    323         {0.0, 0},
    324         {GAL_WAVELENGTH_E6, "6C"},
    325         {GAL_WAVELENGTH_E6, "6A"},
    326         {GAL_WAVELENGTH_E6, "6B"},
    327         {GAL_WAVELENGTH_E6, "6X"},
    328         {GAL_WAVELENGTH_E6, "6Z"},
     318        {GAL_WAVELENGTH_E1,  "1C"},
     319        {GAL_WAVELENGTH_E1,  "1A"},
     320        {GAL_WAVELENGTH_E1,  "1B"},
     321        {GAL_WAVELENGTH_E1,  "1X"},
     322        {GAL_WAVELENGTH_E1,  "1Z"},
     323        {0.0, 0},
     324        {GAL_WAVELENGTH_E6,  "6C"},
     325        {GAL_WAVELENGTH_E6,  "6A"},
     326        {GAL_WAVELENGTH_E6,  "6B"},
     327        {GAL_WAVELENGTH_E6,  "6X"},
     328        {GAL_WAVELENGTH_E6,  "6Z"},
    329329        {0.0, 0},
    330330        {GAL_WAVELENGTH_E5B, "7I"},
     
    332332        {GAL_WAVELENGTH_E5B, "7X"},
    333333        {0.0, 0},
    334         {GAL_WAVELENGTH_E5AB, "8I"},
    335         {GAL_WAVELENGTH_E5AB, "8Q"},
    336         {GAL_WAVELENGTH_E5AB, "8X"},
     334        {GAL_WAVELENGTH_E5AB,"8I"},
     335        {GAL_WAVELENGTH_E5AB,"8Q"},
     336        {GAL_WAVELENGTH_E5AB,"8X"},
    337337        {0.0, 0},
    338338        {GAL_WAVELENGTH_E5A, "5I"},
     
    473473  /* id */
    474474  char sys;
    475   if      (type >= 1121)
     475  if      (type >= 1131)
     476    sys = 'I';
     477  else if (type >= 1121)
    476478    sys = 'C';
    477479  else if (type >= 1111)
     
    485487  else if (type >= 1071)
    486488    sys = 'G';
    487   else if (type >=   21) // test
    488     sys = 'I';
    489489
    490490  bncTime CurrentObsTime;
     
    517517   * the full cycles and can't be used later we skip interpretation here already.
    518518   */
    519   if (type <= 1130 && (type % 10) >= 4 && (type % 10) <= 7) {
     519  if (type <= 1137 && (type % 10) >= 4 && (type % 10) <= 7) {
    520520    int sigmask, numsat = 0, numsig = 0;
    521521    uint64_t satmask, cellmask, ui;
Note: See TracChangeset for help on using the changeset viewer.