Skip to content

Commit

Permalink
- Fix bug in saving AZ/EL/SNR/MP from rtkplot
Browse files Browse the repository at this point in the history
- Add some missing data example files from 2.4.3 code
  • Loading branch information
rtklibexplorer committed Jun 22, 2021
1 parent 1dd6908 commit f1543bf
Show file tree
Hide file tree
Showing 5 changed files with 61,627 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/winapp/rtkplot/plotdata.cpp
Expand Up @@ -1027,7 +1027,7 @@ void __fastcall TPlot::SaveSnrMp(AnsiString file)
if (Obs.data[j].sat!=i+1) continue;

for (k=0;k<NFREQ+NEXOBS;k++) {
if (strstr(code2obs(Obs.data[j].code[k]),code)) break;
if (strchr(code2obs(Obs.data[j].code[k]),code[0])) break;
}
if (k>=NFREQ+NEXOBS) continue;

Expand Down

0 comments on commit f1543bf

Please sign in to comment.