urschrei / lonlat_bng

A multithreaded Rust library with FFI for converting WGS84 longitude and latitude coordinates into BNG (OSGB36) Eastings and Northings and vice versa (using OSTN15)
https://docs.rs/lonlat_bng
MIT License
25 stars 3 forks source link

Possible bug in convert_lonlat #10

Open MichaelClerx opened 2 years ago

MichaelClerx commented 2 years ago

https://github.com/urschrei/lonlat_bng/blob/master/src/conversions.rs#L412

Should the first n.powi(3) be a n.powi(2) ?

https://github.com/urschrei/lonlat_bng/blob/master/src/conversions.rs#L415-L416

Does the .ln_1p().exp_m1() part do anything?