-
Utiliser https://shapely.readthedocs.io/en/stable/reference/shapely.voronoi_polygons.html#shapely.voronoi_polygons pour créer une carte
-
When I used turf.voronoi to generate Voronoi polygons, the following error occurred:
```
Uncaught TypeError: Cannot read properties of null (reading '0')
at turf.min.js:80:68643
at new R…
-
The following test case illustrates a situation in which Fortune's Sweep algorithm produces duplicate vertices.
Duplicate vertices will cause the post-processing polygonisation to fail, so they nee…
-
Currently the room containing a particular measurement area will be detected and the resulting voronoi diagram will be cut at the borders of this room. Some issues arise from this when using the globa…
-
Hi, I had to do some optimizations recently for zonal stats on a very large number of polygons, and I thought the method might fit well here.
Essentially, instead of iterating thru each feature o…
-
Hello,
First, thank you for this really cool library! I was wondering if your method could work for creating taxi voronoi polygons for points that are bounded by a larger polygon, which is somethin…
-
For a specific polygon, when using the shapely function `voronoi_polygons` with `only_edges=True` on it, this leads to the following error: "IllegalArgumentException: point array must contain 0 or >1 …
-
#139 adds generality to board placement, however, it does not allow you to specify negative offsets anymore (e.g., for oddly shaped boards to pack them more tightly). We can support it again - we just…
-
I encountered an issue that special input data can crash **voronoi.polygons**.
**Reproduce Demo**
```js
var d3 = require("d3");
var width = 400;
var height = 400;
// change width and hei…
-
I have been using geovoronoi for a while.
Recently I had to make voronoi polygons for 30K or more points and geovoronoi got way too slow for my purposes.
I tried PyGEOS, which has a voronoi_polygons…