We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this line in geo.rs let lambda0 = (((z - 1) * 6 - 180 + 3) as f64).to_radians(); fails for all UTM zones < 31
let lambda0 = (((z - 1) * 6 - 180 + 3) as f64).to_radians();
it should be let lambda0 = (((z as i32 - 1) * 6 - 180 + 3) as f64).to_radians(); or zone could be i32
let lambda0 = (((z as i32 - 1) * 6 - 180 + 3) as f64).to_radians();
The text was updated successfully, but these errors were encountered:
Good catch. Fixed in 15e04c0
I'm going to bump the version to 1.3.1 and bump on crates.io
Sorry, something went wrong.
No branches or pull requests
this line in geo.rs
let lambda0 = (((z - 1) * 6 - 180 + 3) as f64).to_radians();
fails for all UTM zones < 31it should be
let lambda0 = (((z as i32 - 1) * 6 - 180 + 3) as f64).to_radians();
or zone could be i32The text was updated successfully, but these errors were encountered: