Skip to content

Commit

Permalink
Release v0.12.0 (#139)
Browse files Browse the repository at this point in the history
* relase v0.12.0
* prepare for release
* fix urls in documentation
* use web_gl_mode:true on large plots for faster rendering
---------

Signed-off-by: Guillaume W. Bres <[email protected]>
  • Loading branch information
gwbres authored Aug 26, 2023
1 parent a293c78 commit 3a5e044
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
Binary file modified doc/plots/esbc00dnk_ssi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions rinex-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,18 @@ will differ:
See this SSI analysis as an example, which is only one type of physics present
in OBS RINEX:

<img align="center" width="450" src="https://github.com/georust/rinex/tree/main/doc/plots/esbc00dnk_ssi.png">
<img align="center" width="450" src="https://github.com/georust/rinex/blob/main/doc/plots/esbc00dnk_ssi.png">

- NAV RINEX: satellite vehicle clock data is depicted (bias and drift)

<img align="center" width="450" src="https://github.com/georust/rinex/tree/main/doc/plots/sv_clocks.png">
<img align="center" width="450" src="https://github.com/georust/rinex/blob/main/doc/plots/sv_clocks.png">

A skyplot view can be rendered, as long as at least one NAV RINEX file is present in the context.
But this requires the definition of a reference position on Earth:
either contained in the provided context (file header),
or manually provided. Refer to the command line helper for more information.

<img align="center" width="450" src="https://github.com/georust/rinex/tree/main/doc/plots/skyplot.png">
<img align="center" width="450" src="https://github.com/georust/rinex/blob/main/doc/plots/skyplot.png">

`--qc` for Quality Check analysis was initially intended for OBS RINEX primary files
(teqc legacy), but we intend to provide similar statistical analysis on other major RINEX types.
Expand Down
2 changes: 2 additions & 0 deletions rinex-cli/src/plot/record/navigation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ pub fn plot_navigation(rinex: &Rinex, plot_ctx: &mut PlotContext) {
epochs.clone(),
sv_clock,
)
.web_gl_mode(true)
.visible({
if sv_index == 0 {
/*
Expand All @@ -62,6 +63,7 @@ pub fn plot_navigation(rinex: &Rinex, plot_ctx: &mut PlotContext) {
epochs.clone(),
sv_drift,
)
.web_gl_mode(true)
.y_axis("y2")
.visible({
if sv_index == 0 {
Expand Down
1 change: 1 addition & 0 deletions rinex-cli/src/plot/record/observation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ pub fn plot_observation(ctx: &Context, plot_ctx: &mut PlotContext) {
data_y,
)
.marker(Marker::new().symbol(markers[index].clone()))
.web_gl_mode(true)
.visible({
if index < 1 {
Visible::True
Expand Down
2 changes: 1 addition & 1 deletion rinex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinex"
version = "0.11.1"
version = "0.12.0"
license = "MIT OR Apache-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "Package to parse and analyze RINEX data"
Expand Down
8 changes: 4 additions & 4 deletions rinex/src/navigation/record.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ pub enum NavMsgType {
D2,
/// D1D2
D1D2,
/// SBAS
/// SBAS NAV message
SBAS,
/// GPS / QZSS Civilian NAV message
CNAV,
/// BeiDou CNV1 NAV message
/// BeiDou CNV1 message
CNV1,
/// GPS / QZSS / BeiDou CNV2 Civilian NAV2 message
/// GPS / QZSS / BeiDou CNV2 message
CNV2,
/// BeiDou CNV3 NAV message
/// BeiDou CNV3 message
CNV3,
/// CNVX special marker
CNVX,
Expand Down

0 comments on commit 3a5e044

Please sign in to comment.