diff --git a/rinex-qc/Cargo.toml b/rinex-qc/Cargo.toml index d3d5caeac..f01803050 100644 --- a/rinex-qc/Cargo.toml +++ b/rinex-qc/Cargo.toml @@ -42,9 +42,9 @@ serde = { version = "1.0", default-features = false, features = ["derive"] } statrs = { version = "0.16", optional = true } -# plotly = { version = "0.9", optional = true } +plotly = { version = "0.9", optional = true } # plotly = { path = "../../plotly-rs/plotly", optional = true } -plotly = { git = "https://github.com/gwbres/plotly", branch = "scattergeo"} +# plotly = { git = "https://github.com/gwbres/plotly", branch = "scattergeo"} hifitime = "4.0.0-alpha" gnss-rs = { version = "2.2.3", features = ["serde"] } diff --git a/rinex-qc/src/plot.rs b/rinex-qc/src/plot.rs index 8fcf9cc5d..ba8fc0d9f 100644 --- a/rinex-qc/src/plot.rs +++ b/rinex-qc/src/plot.rs @@ -6,7 +6,8 @@ use plotly::{ update_menu::UpdateMenu, Axis, Center, DragMode, Mapbox, Margin, RangeSelector, RangeSlider, SelectorButton, SelectorStep, }, - DensityMapbox, Layout, Plot as Plotly, Scatter, Scatter3D, ScatterGeo, ScatterMapbox, + DensityMapbox, Layout, Plot as Plotly, Scatter, Scatter3D, //ScatterGeo, + ScatterMapbox, ScatterPolar, Trace, }; @@ -284,14 +285,14 @@ impl Plot { } }) } - /// Builds ScatterGeo - pub fn scattergeo( - lat: Vec, - lon: Vec, - legend: &str, - ) -> Box> { - ScatterGeo::new(lat, lon).name(legend) - } + // /// Builds ScatterGeo + // pub fn scattergeo( + // lat: Vec, + // lon: Vec, + // legend: &str, + // ) -> Box> { + // ScatterGeo::new(lat, lon).name(legend) + // } /// Builds new Density Mapbox trace pub fn density_mapbox( lat: Vec,