PostGIS-ish operations outside a database context for Pythoneers and Pythonistas.

learn more… | top users | synonyms

0
votes
0answers
31 views

python shapely parallel_offset not found

I'm trying to use the shapely parallel_offset, but it sems that it's not found. i've included the imports found in the examples, but it just doesn't recognize parallel_offset. from matplotlib import ...
3
votes
1answer
62 views

Unable to run app on heroku using Flask and Shapely

I have developed a small app which requires the Shapely python library. I installed it on windows via the .exe file so it automatically put the necessary DLL files (geos.dll , geos_c.dll) in ...
1
vote
1answer
248 views

Faster way of polygon intersection with shapely

I have a large number of polygons (~100000) and try to find a smart way of calculating their intersecting area with a regular grid cells. Currently, I am creating the polygons and the grid cells ...
0
votes
0answers
119 views

Distance to the closest “wall”

For a robotics project, I need to calculate - using Python - the distance between my car (represented by a point + a heading angle) and the wall it's facing, as our (real) car will make the same ...
0
votes
0answers
91 views

Line Polygon intersection exclude ending vertex to be part of intersection

I have standpoint and obstacles on map, every obstacle is represented by list of coordinates for example [(9,9), (0,5), (-3,8)...] and standpoint like (-19,-2) . I need to find all visible vertexes ...
3
votes
1answer
508 views

Polygon Intersection with Line | Python Shapely

I have been trying to use shapely to find the intersection of a line and a polygon, but I'm having issues with some floating point numbers. Example code: polygon = [(4.0, -2.0), (5.0, -2.0), (4.0, ...
1
vote
1answer
185 views

Shapely: add new points to existing Polygon

How do I modify an existing Polygon? For a start I'd like to add a Point to its exterior. poly = Polygon([(0, 0), (1, 1), (1, 0)]) I was looking for something like this: poly.append_at(idx=3, ...
3
votes
1answer
80 views

How to merge 2 Shapely Objects?

I try to merge two Shapely Objects in my Python Project. There is a sort of kind of manual that describes some Features of Shapey such as cascaded_union() but I that only works for Polygons. The ...
3
votes
1answer
172 views

GPS positioning with Python, geopy, shapely

I'm trying to work on the following scenario: Getting polygon coordinates from google earth Getting boundaries with Shapely: >>> polygon = ...
4
votes
1answer
279 views

Python, GEOS and Shapely on Windows 64

When trying to install Shapely on my Windows 64bit computer, I cannot get the GEOS library to work. So far, I have run the OSGeo4W installer from which I installed GDAL (I believe the geos library ...
3
votes
1answer
166 views

Draw an ellipse using Shapely

I'm integrating Shapely into my code, and I have to deal with several different kinds of geometric objects. Most of my needs are satisfied with Lines, Polygons and LineStrings, but I need to use ...
0
votes
2answers
508 views

Polygon intersection error | Python Shapely

I have been trying to debug this problem but unable to do so. I am trying to find the intersection of two Polygon objects. It works most of the time but for the following case, it raises the following ...
1
vote
2answers
486 views

OSError geos_c could not be found when Installing Shapely

I'm a newbie to making/plotting on maps with python, been trying to follow this blogpost to generate a world map ...
0
votes
1answer
571 views

Python Shapely intersection: parallel planes

I'm working on determining relationships (boundary/interior intersections) between two 3D objects (triangular faces) and stumbled on shapely, which I am interested in using instead of implementing my ...
0
votes
1answer
242 views

Python: export to DXF file the Shapely objects

How to export the results come from spatial operations such as buffer function on points using Shapely package for Python to a DXF file? BTW, googling wasn't so helpful this time.
1
vote
2answers
489 views

Polygon touches in more than one point with shapely

I have a list of shapely polygons in Python. To find out which polygon touch is easy, using the .touches() method. However, I need something that returns true only when the polygons share more than ...