You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By using the Decoder to read it, I get an Out-Of-Memory Exception:
Caused by: java.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:3681) ~[?:?]
at org.geolatte.geom.VariableSizePositionSequenceBuilder.ensureCapacity(VariableSizePositionSequenceBuilder.java:53) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.VariableSizePositionSequenceBuilder.addCoordinate(VariableSizePositionSequenceBuilder.java:46) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.AbstractPositionSequenceBuilder.add(AbstractPositionSequenceBuilder.java:47) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.cga.CircularArcLinearizer.AddPointsBetweenPolarCoordinates(CircularArcLinearizer.java:158) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.cga.CircularArcLinearizer.linearize(CircularArcLinearizer.java:95) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.Linearizer.linearizeToList(Linearizer.java:42) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.Linearizer.linearize(Linearizer.java:49) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.SimpleElement.linearizedPositions(Element.java:68) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.CompoundElement.linearizedPositions(Element.java:152) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.PolygonSdoDecoder.decode(PolygonSdoDecoder.java:38) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.PolygonSdoDecoder.internalDecode(PolygonSdoDecoder.java:24) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.AbstractSDODecoder.decode(AbstractSDODecoder.java:23) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.AbstractSDODecoder.decode(AbstractSDODecoder.java:13) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.Decoders.decode(Decoders.java:30) ~[geolatte-geom-1.9.1.jar:?]
at org.geolatte.geom.codec.db.oracle.Decoders.decode(Decoders.java:25) ~[geolatte-geom-1.9.1.jar:?]
I think that the problem is because of too many points in linearization.
Are there any plans to introduce such a configuration or a hard coded value that a Runtime or IllegalArgumentException can be thrown before the Out-Of-Memory happens?
The text was updated successfully, but these errors were encountered:
Hello guys,
I am having an ORACLE SDO Geometry in that way:
By using the Decoder to read it, I get an Out-Of-Memory Exception:
I think that the problem is because of too many points in linearization.
Are there any plans to introduce such a configuration or a hard coded value that a Runtime or IllegalArgumentException can be thrown before the Out-Of-Memory happens?
The text was updated successfully, but these errors were encountered: