@@ -44,7 +44,7 @@ fn helmert_common(
44
44
let mut TT = [ T [ 0 ] , T [ 1 ] , T [ 2 ] ] ;
45
45
let mut SS = S ;
46
46
47
- let mut prev_t = std :: f64:: NAN ;
47
+ let mut prev_t = f64:: NAN ;
48
48
let n = operands. len ( ) ;
49
49
for i in 0 ..n {
50
50
let mut c = operands. get_coord ( i) ;
@@ -167,10 +167,10 @@ pub const GAMUT: [OpParameter; 25] = [
167
167
OpParameter :: Real { key : "ds" , default : Some ( 0f64 ) } , // TODO: scale by 1e-6
168
168
169
169
// Epoch - "beginning of time for this transformation"
170
- OpParameter :: Real { key : "t_epoch" , default : Some ( std :: f64:: NAN ) } ,
170
+ OpParameter :: Real { key : "t_epoch" , default : Some ( f64:: NAN ) } ,
171
171
172
172
// Fixed observation time - ignore the fourth coordinate.
173
- OpParameter :: Real { key : "t_obs" , default : Some ( std :: f64:: NAN ) } ,
173
+ OpParameter :: Real { key : "t_obs" , default : Some ( f64:: NAN ) } ,
174
174
] ;
175
175
176
176
pub fn new ( parameters : & RawParameters , _ctx : & dyn Context ) -> Result < Op , Error > {
@@ -581,7 +581,7 @@ mod tests {
581
581
let definition = "
582
582
helmert exact convention = coordinate_frame
583
583
angular_velocity = 0.00150379, 0.00118346, 0.00120716
584
- t_epoch = 2020.0
584
+ t_epoch = 2020.0
585
585
" ;
586
586
let op = ctx. op ( definition) ?;
587
587
0 commit comments