Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
lizhengnss committed May 14, 2023
1 parent aa3230c commit 4036219
Show file tree
Hide file tree
Showing 9 changed files with 2,575 additions and 2,246 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ build_release/
build/

*.pyc
script/residual.png
script/det.txt


6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"-C", "spp_kpl_lsqd.ini", "-S", "GREC", "-M", "spp", "-L", "1",
],
"stopAtEntry": false,
"cwd": "/mnt/hgfs/VirtualFile/POSGO_V1.0/conf",
"cwd": "/mnt/hgfs/VirtualFile/POSGO/conf",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
Expand All @@ -33,10 +33,10 @@
"request": "launch",
"program": "${workspaceFolder}/build_release/POSGO",
"args": [
"-C", "rp_kpl_ekfd.ini", "-S", "GREC", "-M", "rtk", "-L", "1",
"-C", "spp_mate_go.ini", "-S", "GCRE", "-M", "spp", "-L", "1"
],
"stopAtEntry": false,
"cwd": "/mnt/hgfs/VirtualFile/POSGO_V1.0/conf",
"cwd": "/mnt/hgfs/VirtualFile/POSGO/conf",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
Expand Down
8 changes: 4 additions & 4 deletions conf/rp_kpl_gol.ini
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ ExportTimeSystem = gpst #1.gpst; 2.utc; 3.bst


#file name
File-GnssObs =/mnt/hgfs/VirtualFile/POSGO_V1.0/data/kpl/kpl.22o
File-Navigation =/mnt/hgfs/VirtualFile/POSGO_V1.0/data/kpl/BRDC00IGS_R_20221650000_01D_MN.rnx
File-GnssBase =/mnt/hgfs/VirtualFile/POSGO_V1.0/data/kpl/base.22o
File-Result =/mnt/hgfs/VirtualFile/data/paper/kpl/my2.txt
File-GnssObs =/mnt/hgfs/VirtualFile/data/paper/kpl/kpl.22o
File-Navigation =/mnt/hgfs/VirtualFile/data/paper/kpl/BRDC00IGS_R_20221650000_01D_MN.rnx
File-GnssBase =/mnt/hgfs/VirtualFile/data/paper/kpl/base.22o
File-Result =/mnt/hgfs/VirtualFile/data/paper/kpl/my.txt
File-Leapsec =/mnt/hgfs/VirtualFile/posgo_ws/src/POSGO/tables/leap.sec

#debug
Expand Down
Binary file modified doc/POSGO User Manual.docx
Binary file not shown.
Binary file added doc/~$SGO User Manual.docx
Binary file not shown.
14 changes: 10 additions & 4 deletions script/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions script/Analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ def StatisticResult(_det):
all += 1
_stat.gpsw.append(time)

if abs(det["b"]) < 100:
if abs(det["b"]) < 1e10:
_stat.dx.append(det["b"])
if abs(det["l"]) < 100:
if abs(det["l"]) < 1e10:
_stat.dy.append(det["l"])
if abs(det["h"]) < 100:
if abs(det["h"]) < 1e10:
_stat.dz.append(det["h"])
if det["stat"] == 1 or det["stat"] == 3:
fix += 1
Expand Down Expand Up @@ -184,8 +184,8 @@ def DrawFigure(_stat):
detFile = "det.txt"

calValue = ReadMyResult(calFile)
refValue = ReadIERefResult(refFile)
# refValue = ReadGINSResult(refFile)
# refValue = ReadIERefResult(refFile)
refValue = ReadGINSResult(refFile)

detValue = CalDifference(calValue, refValue)
Stat = StatisticResult(detValue)
Expand Down
Loading

0 comments on commit 4036219

Please sign in to comment.