Tagged Questions
1
vote
1answer
65 views
How to set the path to shapely?
I am using QGIS 1.8.0 on Mac OS 10.8.3 with python 2.7. Thanks to other threads in the forum, I have successfully installed shapely here:
...
1
vote
1answer
252 views
QGIS Python version
I have brewed python 2.7.3 onto my Mac (Lion), and installed shapely via pip install shapely. The Polygonizer plugin, however, does not find the shapely library. I see when QGIS loads a Python ...
3
votes
1answer
201 views
Does anyone have a shapely install for python “dummies” guide?
I have read both questions in regard to installing shapely on a Mac (OS Mountain Lion) and haven't been able to figure it out. I'm not familiar with python syntax and am just trying to get shapely ...
0
votes
2answers
248 views
Python module “shapely.wkb” missing
I am trying to follow a tutorial from here http://qgistips.spatialthoughts.com/2012/12/find-neighbor-polygons-in-layer-in-qgis.html#more
I have downloaded the relevant python script and edited it as ...
2
votes
1answer
281 views
How to install shapely for python 2.6 (Mac) NOT 2.7?
I'm trying to use Polygonizer plugin inside QGIS, but it needs Shapely to work. I've installed Shapely (pip install Shapely) but that's for python 2.7. QGIS works with python 2.6 (on Snow Leopard) and ...
2
votes
1answer
435 views
GEOS and Shapely installation on Windows
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 ...
7
votes
1answer
221 views
How to split two interscting polygons by the average linestring of the shared area (QGIS / python shapely)
I have two polygons,
POLYGON((-5 -5,-5 5,5 5,5 -5,-5 -5))
POLYGON((1 1, 1 7, 7 7, 7 1, 1 1))
and wish to split them evenly.
The result should be a split along the red marked line.
I'm using ...
2
votes
3answers
393 views
Why is this polygon “self intersected” and invalid?
I have a polygon defined as follows:
segment from 43:29:02 N 003:50:39 E to 43:34:12 N 003:43:04 E
arc(CW): center (43:34:49 N 003:58:16 E) from 43:34:12 N 003:43:04 E to 43:45:45 N 003:59:56 E
...
