Skip to content

Commit

Permalink
Replace deprecated INFINITY (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
larsnaesbye committed May 18, 2023
1 parent 772823d commit 6c4f399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rinex-cli/src/plot/record/ionex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub fn plot_tec_map(

let mut grid_lat: Vec<f64> = Vec::new();
let mut grid_lon: Vec<f64> = Vec::new();
let mut tec_max = -std::f64::INFINITY;
let mut tec_max = -f64::INFINITY;
for (e_index, (e, (tec, _, _))) in record.iter().enumerate() {
for point in tec {
if e_index == 0 {
Expand Down

0 comments on commit 6c4f399

Please sign in to comment.