Skip to content

Commit

Permalink
Fix signal recombination plot titles
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume W. Bres <[email protected]>
  • Loading branch information
gwbres committed May 14, 2024
1 parent 06b2682 commit d46a1fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rinex-cli/src/graph/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
);
}
Expand All @@ -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",
);
}
Expand All @@ -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",
);
}
Expand All @@ -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",
);
}
Expand Down

0 comments on commit d46a1fe

Please sign in to comment.