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
When using the geojson classes from jni, there is a performance hit as all factory methods are now neatly typed. For example: MultiPolygon#fromCoordinates(List<List<List<Position>>> coordinates). This means creating multiple nested arrays of Position objects and turning all of those into Lists. This is great from Java, very messy from jni.
Let's add methods like: MultiPolygon#fromCoordinates(double[][][][] coordinates) (already lost count of the []'s)
When using the geojson classes from jni, there is a performance hit as all factory methods are now neatly typed. For example:
MultiPolygon#fromCoordinates(List<List<List<Position>>> coordinates)
. This means creating multiple nested arrays ofPosition
objects and turning all of those intoList
s. This is great from Java, very messy from jni.Let's add methods like:
MultiPolygon#fromCoordinates(double[][][][] coordinates)
(already lost count of the[]
's)cc @zugaldia
The text was updated successfully, but these errors were encountered: