mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-17 20:53:02 +00:00
Fix satellite
This commit is contained in:
parent
986487ba26
commit
df1a3a13df
@ -69,6 +69,9 @@ Channel7.signal=2S
|
|||||||
Channel8.signal=2S
|
Channel8.signal=2S
|
||||||
Channel9.signal=2S
|
Channel9.signal=2S
|
||||||
|
|
||||||
|
;######### SPECIFIC CHANNELS CONFIG ######
|
||||||
|
|
||||||
|
Channel0.satellite=19
|
||||||
|
|
||||||
;######### ACQUISITION GLOBAL CONFIG ############
|
;######### ACQUISITION GLOBAL CONFIG ############
|
||||||
|
|
||||||
@ -89,14 +92,13 @@ Acquisition_2S.blocking=true
|
|||||||
|
|
||||||
;######### TRACKING GLOBAL CONFIG ############
|
;######### TRACKING GLOBAL CONFIG ############
|
||||||
|
|
||||||
|
|
||||||
Tracking_2S.implementation=GPS_L2_M_DLL_PLL_Tracking
|
Tracking_2S.implementation=GPS_L2_M_DLL_PLL_Tracking
|
||||||
|
|
||||||
Tracking_2S.item_type=gr_complex
|
Tracking_2S.item_type=gr_complex
|
||||||
|
|
||||||
Tracking_2S.pll_bw_hz=4.0;
|
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;
|
Tracking_2S.early_late_space_chips=0.5;
|
||||||
|
|
||||||
@ -104,14 +106,17 @@ Tracking_2S.dump=true
|
|||||||
|
|
||||||
Tracking_2S.dump_filename=./data/track_ch_
|
Tracking_2S.dump_filename=./data/track_ch_
|
||||||
|
|
||||||
|
|
||||||
;######### TELEMETRY DECODER CONFIG ############
|
;######### TELEMETRY DECODER CONFIG ############
|
||||||
|
|
||||||
TelemetryDecoder_2S.implementation=GPS_L2C_Telemetry_Decoder
|
TelemetryDecoder_2S.implementation=GPS_L2C_Telemetry_Decoder
|
||||||
|
|
||||||
|
|
||||||
;######### OBSERVABLES CONFIG ############
|
;######### OBSERVABLES CONFIG ############
|
||||||
|
|
||||||
Observables.implementation=Hybrid_Observables
|
Observables.implementation=Hybrid_Observables
|
||||||
|
|
||||||
|
|
||||||
;######### PVT CONFIG ############
|
;######### PVT CONFIG ############
|
||||||
|
|
||||||
PVT.implementation=RTKLIB_PVT
|
PVT.implementation=RTKLIB_PVT
|
||||||
|
@ -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);
|
set(hSurface,'facecolor','none','edgecolor',[0 0.6 0],'edgealpha',1,'facealpha',1);
|
||||||
|
|
||||||
%axis equal;
|
%axis equal;
|
||||||
xlabel('North [m]','fontname','Times','fontsize', fontsize)
|
xlabel('North [m]','fontname','Times','fontsize', fontsize-2)
|
||||||
ylabel('East [m]','fontname','Times','fontsize', fontsize)
|
ylabel('East [m]','fontname','Times','fontsize', fontsize-2)
|
||||||
zlabel('Up [m]','fontname','Times','fontsize', fontsize)
|
zlabel('Up [m]','fontname','Times','fontsize', fontsize-2)
|
||||||
str = strcat('MRSE=',num2str(MRSE), ' m');
|
str = strcat('MRSE=',num2str(MRSE), ' m')
|
||||||
text(cosd(45)*MRSE,sind(45)*MRSE,20,str,'Color',[0 0.6 0]);
|
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');
|
hh=findall(hf,'-property','FontName');
|
||||||
set(hh,'FontName','Times');
|
set(hh,'FontName','Times');
|
||||||
|
Loading…
Reference in New Issue
Block a user