Sergey Tolstov
Sergey Tolstov
@ljader This is not a bug, because MultiPolygon can contain one Polygon. If you would like it to write Polygon type explicitly, provide WkbExportFlags.wkbExportPolygon flag. It does not try to...
@ljader Call getExteriorRingCount() on the polygon and check that it is less or equal to 1. Then write out WKB Polygon if it is.
@ljader Thank you, I've submitted a PR to fix the typo: https://github.com/Esri/geometry-api-java/pull/171. There is no bug I think, but the typo is misleading.
@sllynn Yes, this looks like a typo. You can open a PR if you have a fix.
@climbage @randallwhitman Yes/no?
I like chaining and use it in C++. However, in Java the method signature does not tell what the method does - creates a new object or returns this. So...
At the location of the cut, the left is to the left of the tangent vector of the the cutter segment and the right is to the right of it....
@randallwhitman fyi
@navis In the OperatorBuffer, the third execute method is missing the public keyword: abstract GeometryCursor execute(GeometryCursor input_geometries, SpatialReference sr, double[] distances, double max_deviation, int max_vertices_in_full_circle, boolean b_union, ProgressTracker progress_tracker); Add...
@ladyfish Some internal optimization makes the intersection code to intersect envelopes without taking the tolerance into account and returns a non-simple polygon. If you'd pass polygons you'd see it being...