Skip to content

Commit

Permalink
min and max values for double mixed up
Browse files Browse the repository at this point in the history
(cherry picked from commit a31fe4e)
  • Loading branch information
nls-jajuko authored and jampukka committed Dec 8, 2023
1 parent d47b339 commit 08c4290
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public default void init(OutputStream out, int maxDecimalsCoordinate, int srid)
public default void init(OutputStream out, int maxDecimalsCoordinate, int srid, boolean crsIsLatLon) throws Exception {
int minDecimalsFloat = 0;
int maxDecimalsFloat = 5;
int maxDecimalsDouble = 0;
int minDecimalsDouble = 8;
int minDecimalsDouble = 0;
int maxDecimalsDouble = 8;
int minDecimalsOrdinate = 0;
FloatingPointFormatter f = new DefaultFloatingPointFormatter(
minDecimalsFloat,
Expand Down

0 comments on commit 08c4290

Please sign in to comment.