Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
MishkaMN committed Sep 27, 2024
1 parent 88ee4ed commit dcb3f00
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ public MutableGeoPoint utmToGeographic(UtmPoint utmPoint, MutableGeoPoint result
public UtmZone getUTMZone(GeoPoint geoPoint){
int zoneNumber;

// Make sure the longitude is between -180.00 .. 179.9
double longTemp = (geoPoint.getLongitude() + 180) - (int) ((geoPoint.getLongitude() + 180) / 360) * 360 - 180;

zoneNumber = (int) ((longTemp + 180) / 6) + 1;
Expand Down

0 comments on commit dcb3f00

Please sign in to comment.