-
When computing intersections of almost overlapping polygons. Example:
```python
>>> import numpy as np
>>> from spherical_geometry.polygon import SphericalPolygon
>>> p1 = SphericalPolygon(
... …
mcara updated
4 years ago
-
Hi,
Is there any way to use geospatial LineString type, Intersections between Polygons, Points, LineStrings, and find Near? I am linking to the mongodb documentation about GeoJSON:
https://www.mong…
-
## Expected behaviour and actual behaviour.
GEOS 3.5 added support for faster intersection calculations when using rectangles (see https://trac.osgeo.org/geos/ticket/699 ). It would be useful if…
-
On version 1.82 without special defines. I have found a test case that gives unexpectedly wrong results.
Here is the test case to prove the problem. The correct result is close to the float precisi…
-
I have specified
polygon: { allowIntersection: false }
in my constructor.
For creating new features this is respected correctly.
When editing existing features intersections are allowed. It seem…
-
Include geographical data
[Geographical data](https://github.com/daohoangson/dvhcvn/tree/master/data/gis) referenced from [daohoangson/dvhcvn repository](https://github.com/daohoangson/dvhcvn), his r…
-
So, in Ray.draw() there is a lot of intersection logic. By default a Ray know how to intersect Rectangles. The way intersection should be done is by every base class (Rectangle, Circle, Polygon) to im…
-
I'm working on line clipping operation. The first, I need to calculate the intersection point with lines and polygons using turf.lineIntersection() function. When the lines and polygons are sample, I…
-
1. The checks in func triangulate_polygons(polygon2d : Polygon2D) would fail a simple quand with 4 vertices
2. The func _points_are_inside_polygon() would fail unexpectedly in some cases
…
-
I can't find any documentation on what the expected behavior is for degenerate polygons (i.e., polygons formed by only 1 or 2 vertexes).
Use-case: I am trying to prevent a user from drawing polygon…