From df1a3a13df7047f82854a37238c46bb3a99c60f0 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 11 Mar 2018 20:09:49 +0100 Subject: [PATCH] Fix satellite --- .../reproducibility/ieee-access18/L2-access18.conf | 9 +++++++-- src/utils/reproducibility/ieee-access18/plot_dump.m | 10 ++++++---- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/utils/reproducibility/ieee-access18/L2-access18.conf b/src/utils/reproducibility/ieee-access18/L2-access18.conf index fff74d193..57e1af0a3 100644 --- a/src/utils/reproducibility/ieee-access18/L2-access18.conf +++ b/src/utils/reproducibility/ieee-access18/L2-access18.conf @@ -69,6 +69,9 @@ Channel7.signal=2S Channel8.signal=2S Channel9.signal=2S +;######### SPECIFIC CHANNELS CONFIG ###### + +Channel0.satellite=19 ;######### ACQUISITION GLOBAL CONFIG ############ @@ -89,14 +92,13 @@ Acquisition_2S.blocking=true ;######### TRACKING GLOBAL CONFIG ############ - Tracking_2S.implementation=GPS_L2_M_DLL_PLL_Tracking Tracking_2S.item_type=gr_complex Tracking_2S.pll_bw_hz=4.0; -Tracking_2S.dll_bw_hz=0.75; +Tracking_2S.dll_bw_hz=1; Tracking_2S.early_late_space_chips=0.5; @@ -104,14 +106,17 @@ Tracking_2S.dump=true Tracking_2S.dump_filename=./data/track_ch_ + ;######### TELEMETRY DECODER CONFIG ############ TelemetryDecoder_2S.implementation=GPS_L2C_Telemetry_Decoder + ;######### OBSERVABLES CONFIG ############ Observables.implementation=Hybrid_Observables + ;######### PVT CONFIG ############ PVT.implementation=RTKLIB_PVT diff --git a/src/utils/reproducibility/ieee-access18/plot_dump.m b/src/utils/reproducibility/ieee-access18/plot_dump.m index efc06e649..09941acf9 100644 --- a/src/utils/reproducibility/ieee-access18/plot_dump.m +++ b/src/utils/reproducibility/ieee-access18/plot_dump.m @@ -227,11 +227,13 @@ hSurface=surf(MRSE*x,MRSE*y,MRSE*z); % sphere centered at origin set(hSurface,'facecolor','none','edgecolor',[0 0.6 0],'edgealpha',1,'facealpha',1); %axis equal; -xlabel('North [m]','fontname','Times','fontsize', fontsize) -ylabel('East [m]','fontname','Times','fontsize', fontsize) -zlabel('Up [m]','fontname','Times','fontsize', fontsize) -str = strcat('MRSE=',num2str(MRSE), ' m'); +xlabel('North [m]','fontname','Times','fontsize', fontsize-2) +ylabel('East [m]','fontname','Times','fontsize', fontsize-2) +zlabel('Up [m]','fontname','Times','fontsize', fontsize-2) +str = strcat('MRSE=',num2str(MRSE), ' m') text(cosd(45)*MRSE,sind(45)*MRSE,20,str,'Color',[0 0.6 0]); +a=gca; +set(a,'fontsize',fontsize-6) hh=findall(hf,'-property','FontName'); set(hh,'FontName','Times');