Skip to content

Commit

Permalink
fix utm proj str
Browse files Browse the repository at this point in the history
  • Loading branch information
adev4a committed Sep 27, 2024
1 parent 4de651f commit b4cd282
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,10 @@ public Proj4Projection(GeoPoint origin, double x_offset, double y_offset, String
{
utm_proj_str = "+proj=utm +zone=" + zone.number + " +north";
}
else{
utm_proj_str = "+proj=utm +zone=" + zone.number + " +south";
}

utm_proj_str = "+proj=utm +zone=" + zone.number + " +south";
this.utmCRS = crsFactory.createFromParameters("custom_proj", utm_proj_str);

}
Expand Down

0 comments on commit b4cd282

Please sign in to comment.