SGL-UT / GPSTk

ATTENTION: This repository has been moved and is for archival purposes only. GPSTk toolkit has been renamed to GNSSTK and has been split into two new separate repositories. GNSSTK now only contains libraries while the other repository GNSSTK-APPS contains only applications. The rename and split into libraries and applications started with version v12.0.0 on September 2021. GPSTk --> GNSSTK at https://gitlab.com/sgl-ut/gnsstk --> GNSSTK-APPS at https://gitlab.com/sgl-ut/gnsstk-apps
Other
339 stars 182 forks source link

C1P is not stored in system G? #64

Closed libing64 closed 4 years ago

libing64 commented 4 years ago
./example3 ../madr1480.08o
text 0:C1P is not stored in system G.
location 
:/home/xxx/source/gnss/GPSTk/core/lib/FileHandling/RINEX3/Rinex3ObsHeader.cpp:2476
libing64 commented 4 years ago
      int indexP1( roh.getObsIndex( "P1" ) );
      int indexP2( roh.getObsIndex( "P2" ) );
       ===>
      int indexP1(roh.getObsIndex("C1W"));
      int indexP2(roh.getObsIndex("C2W"));
libing64 commented 4 years ago

After setting "P1" to "C1W", this issue could be solved.