From d46a1fe107242197593b29722ea03e8bf20ca399 Mon Sep 17 00:00:00 2001 From: "Guillaume W. Bres" Date: Tue, 14 May 2024 08:10:15 +0200 Subject: [PATCH] Fix signal recombination plot titles Signed-off-by: Guillaume W. Bres --- rinex-cli/src/graph/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rinex-cli/src/graph/mod.rs b/rinex-cli/src/graph/mod.rs index 9af352fdd..00c9dcaa8 100644 --- a/rinex-cli/src/graph/mod.rs +++ b/rinex-cli/src/graph/mod.rs @@ -576,7 +576,7 @@ pub fn graph_opmode(ctx: &Context, matches: &ArgMatches) -> Result<(), Error> { plot_gnss_combination( &combination, &mut plot_ctx, - "Ionosphere Free combination", + "Geometry Free combination", "Meters of delay", ); } @@ -585,7 +585,7 @@ pub fn graph_opmode(ctx: &Context, matches: &ArgMatches) -> Result<(), Error> { plot_gnss_combination( &combination, &mut plot_ctx, - "Ionosphere Free combination", + "Wide Lane combination", "Meters of delay", ); } @@ -594,7 +594,7 @@ pub fn graph_opmode(ctx: &Context, matches: &ArgMatches) -> Result<(), Error> { plot_gnss_combination( &combination, &mut plot_ctx, - "Ionosphere Free combination", + "Narrow Lane combination", "Meters of delay", ); } @@ -603,7 +603,7 @@ pub fn graph_opmode(ctx: &Context, matches: &ArgMatches) -> Result<(), Error> { plot_gnss_combination( &combination, &mut plot_ctx, - "Ionosphere Free combination", + "Melbourne Wubbena combination", "Meters of delay", ); }