Skip to content

Commit

Permalink
fix wrong conversion from meters to yards and from meters to inches (#…
Browse files Browse the repository at this point in the history
…194)

Co-authored-by: Dzmitry Komar <[email protected]>
  • Loading branch information
dimonkomaron and Dzmitry Komar authored Oct 17, 2024
1 parent 90db632 commit 44630f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/helpers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ const factors = <Unit, num>{
Unit.centimeters: earthRadius * 100,
Unit.degrees: earthRadius / 111325,
Unit.feet: earthRadius * 3.28084,
Unit.inches: earthRadius * 39.370,
Unit.inches: earthRadius * 39.3701,
Unit.kilometers: earthRadius / 1000,
Unit.meters: earthRadius,
Unit.miles: earthRadius / 1609.344,
Unit.millimeters: earthRadius * 1000,
Unit.nauticalmiles: earthRadius / 1852,
Unit.radians: 1,
Unit.yards: earthRadius / 1.0936,
Unit.yards: earthRadius * 1.0936,
};

const unitsFactors = <Unit, num>{
Expand Down

0 comments on commit 44630f7

Please sign in to comment.