Skip to content

Commit

Permalink
add more help in the Cli
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 f3f9b02 commit 4897b96
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions rinex-cli/src/cli/positioning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ Use this mode to resolve Position Velocity and Time (PVT) solutions from one GNS
.action(ArgAction::Append)
.help("Pass a Position Solver configuration file (JSON). See --help.")
.long_help("
Read the [https://github.com/georust/rinex/wiki/Positioning] tutorial.
Use [https://github.com/georust/rinex/rinex-cli/config.rtk] as a starting point.
[https://docs.rs/gnss-rtk/latest/gnss_rtk/prelude/struct.Config.html] is the structure to represent in JSON.
Our Wiki pages contains several examples."))
"))
.arg(Arg::new("gpx")
.long("gpx")
.action(ArgAction::SetTrue)
Expand All @@ -32,18 +33,14 @@ Our Wiki pages contains several examples."))
.long("cggtts")
.action(ArgAction::SetTrue)
.help("Activate CGGTTS special solver. See --help.")
.long_help("In CGGTTS opmode, we're only interested in resolving the local offset to the constellation.
Navigation mode is set to [TimeOnly] and we navigate using every single vehicle in sight fitting criteria.
CGGTTS opmode is therefore more demanding as it runs the algorithm many more times than regular PPP.
The PVT solutions are then formatted as a CGGTTS file which is used to compare remote clocks to one another, from a common GNSS constellation."))
.long_help("Refer to the [https://github.com/georust/rinex/wiki/CGGTTS] tutorial."))
.arg(Arg::new("tracking")
.long("trk")
.short('t')
.value_parser(value_parser!(Duration))
.action(ArgAction::Set)
.help("CGGTTS custom tracking duration.
Otherwise, the default tracking duration is used.
Refer to []"))
Otherwise, the default tracking duration is used. Refer to [https://docs.rs/cggtts/latest/cggtts/track/struct.Scheduler.html]."))
.arg(Arg::new("lab")
.long("lab")
.action(ArgAction::Set)
Expand Down

0 comments on commit 4897b96

Please sign in to comment.