mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-19 16:24:58 +00:00
41 lines
1.1 KiB
Gnuplot
41 lines
1.1 KiB
Gnuplot
|
#set terminal pdf color font "Bold,14"
|
||
|
#set output "IFEN_accuracy.pdf"
|
||
|
|
||
|
set terminal jpeg font "Helvetica, 14"
|
||
|
set output "8_GPS_accuracy_precision.jpeg"
|
||
|
|
||
|
set grid
|
||
|
set xrange [-8:8]
|
||
|
set yrange [-8:8]
|
||
|
set ylabel "North [m]"
|
||
|
set xlabel "East [m]"
|
||
|
|
||
|
set key Left left
|
||
|
set title "IFEN simulated data, 8 GPS - Accuracy and Precision"
|
||
|
file1="8_GPS_GNSS_SDR_solutions.txt"
|
||
|
#file2="8_GAL_GNSS_SDR_solutions.txt"
|
||
|
#file3="8_GPS_GNSS_SDR_solutions.txt"
|
||
|
|
||
|
#values to copy from statistic file
|
||
|
DRMS= 2.034509899
|
||
|
DUE_DRMS= 4.069019799
|
||
|
CEP= 1.678044871
|
||
|
|
||
|
#difference with respect to the reference position
|
||
|
#values to copy from statistic file
|
||
|
delta_E=-0.560 #gps
|
||
|
delta_N=1.323 #gps
|
||
|
|
||
|
set parametric
|
||
|
#dummy variable is t for curves, u/v for surfaces
|
||
|
set size square
|
||
|
set angle degree
|
||
|
set trange [0:360]
|
||
|
#radius_6_GPS=6
|
||
|
|
||
|
plot file1 u 9:10 with points pointsize 0.3 lc rgb "red" notitle,\
|
||
|
DRMS*sin(t)+delta_E,DRMS*cos(t)+delta_N lw 3 lc rgb "black" title "DRMS",\
|
||
|
DUE_DRMS*sin(t)+delta_E,DUE_DRMS*cos(t)+delta_N lw 2 lc rgb "gray" title "2DRMS",\
|
||
|
CEP*sin(t)+delta_E,CEP*cos(t)+delta_N lw 1 lc rgb "black" title "CEP"
|
||
|
|