Tagged Questions
0
votes
2answers
49 views
Python: checking if point is inside a polygon
I have a class describing a Point (has 2 coordinates x and y) and a class describing a Polygon which has a list of Points which correspond to corners (self.corners)
I need to check if a Point is in a ...
0
votes
1answer
31 views
Matplotlib.pyplot.contourf: lines, or gaps between polygons?
I'm trying to plot a filled contour plot, but the edge of each polygon is white.
I've tried turning them of with linewidth=0, linewidths=0,edgecolor=None and a few others. I'm beginning to think it ...
0
votes
3answers
71 views
Point in convex polygon
I'm trying to make a function that will return True if the given (x,y) point is inside a convex polygon. I'm trying to make it without numpy or any similar imports, just pure python code.
I've ...
0
votes
1answer
33 views
How made Sympy Polygon with many vertex in a list?
I want use the sympy python for do a Polygon with n faces and calculate all parameters.
The easy form is
from sympy import Polygon
p1, p2, p3, p4, p5 = [(0, 0), (1, 0), (5, 1), (0, 1), (3, 0)]
...
1
vote
3answers
216 views
shapefile and matplotlib: plot polygon collection of shapefile coordinates
I'm trying to plot filled polygons of countries on the world map with matplotlib in python.
I've got a shapefile with country boundary coordinates of every country. Now, I want to convert these ...
1
vote
1answer
111 views
How to order points for Matplotlib's fill function?
A polygon is represented by two lists. List xs contains x coordinates in decreasing order. For each x value, the corresponding element in list regions is a list of slices. Each slice indicates a y ...
0
votes
1answer
49 views
Convex hull - Monotone chain algorithm error
I'm using the Monotone chain algorithm to create a convex hull around a set of polygons. It works well sometimes, but on some shapes, it fails. Take a look at this example:
...
0
votes
0answers
40 views
Saving and creating GEO Polygon data
First - Sorry for my bad english.
Second i can be a bad explainer.
Situation is :
Using OpenLayers 2.12 and Python ( 2.6 ) and Django 1.4
I build in input field Polygon data which looks like
...
0
votes
1answer
88 views
Import error in Python: Polygon
I installed this library called Polygon, in Python 2.7.3. But, each time I import it I get the next error message :
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
...
1
vote
1answer
86 views
MousePressEvent catches signal unnecessary- PyQt4
So I have a QraphicsScene with a QGraphicsPolygonItem , which I flag as movable. And I also override the MousePressEvent. My code snippet tll now.
def mousePressEvent(self , e):
self.endx = e.x()
...
3
votes
1answer
494 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, ...
2
votes
2answers
189 views
Efficiently merging and reducing polygons with Python
What's the most efficient way, preferably in Python, to merge and simplify several polygons into the equivalent shape but using much fewer polygons?
I'm attempting to graph zip code regions, as ...
1
vote
1answer
90 views
matplotlib colored segment of a function plot
I wonder if there is a more elegant way to draw the polygon in below code, or with a special plot function or parameter ?
import numpy as np
import matplotlib.pyplot as plt
from scipy.stats import ...
1
vote
0answers
292 views
Python: Contour features in a polygon shapefiles with a straightforward solution
Dear Members list,
First of all, I apologize to post this question modified and improved from a previous post. Recently i am working on shapefiles polygon in order to compute basic contour features:
...
0
votes
2answers
498 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 ...
0
votes
1answer
138 views
Creating polygon from polyline
I have a road network shapefile as a polyline and I want to convert this to a polygon layer wherever the network forms a 'hole' or closes in on itself. The problem is a hole could be made from more ...
0
votes
2answers
1k views
Python: find area of polygon from xyz coordinates
I'm trying to use the shapely.geometry.Polygon module to find the area of polygons but it performs all calculations on the xy plane. This is fine for some of my polygons but others have a z dimension ...
0
votes
2answers
117 views
Tips on improving this function?
This may be quite a green question, but I hope you understand – just started on python and trying to improve. Anyways, wrote a little function to do the "Shoelace Method" of finding the area of a ...
0
votes
1answer
187 views
Python binding for Clipper
Is there some Python binding for Clipper library?
I need OffsetPolygons function. I've tried to convert C++ Clipper code to Python, and I managed to do that up to some point, but then it becomes too ...
0
votes
2answers
94 views
Pythonic Way To Draw Polygon
Specifically, I have a list of points. I want to connect these points together to create a polygon.
The obvious way to do this is the C-style:
39 def drawPoly(poly):
40 for i in range(0, ...
2
votes
2answers
193 views
How to determine whether a polygon is inside other one?
I have a simple example (SVG source) looks like you can see below. The path with id "rect2816" described in d attribute:
m 140.53571,188.625 0,148.1875 273.9375,0 0,-148.1875 -273.9375,0 z
m ...
0
votes
1answer
567 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 ...
5
votes
3answers
1k views
Area of a polygon (Recursively using Python)
I'm trying a solve an exercise from Exploring Python book. But, I guess I don't understand concept of the recursion. I've written some Recursively function. Therefore I know some of the aspects. But, ...
1
vote
0answers
323 views
Convert Polyhedra and Polygons to voxels in Python
For my research I need to turn both 3D-polygons (faces) and 3D-polyhedrons (volumes) into voxels (equidistant cubes), so a finite differences PDE solver scheme can work with the geometry. I already ...
1
vote
1answer
379 views
postgis split polygon using points
I would like to extract polygon parts using points to cut it.
I have seen ST_Dump and ST_Split but they do not seem to do the trick. Should I create more points in order to create a line segment and ...
1
vote
0answers
430 views
Check if pixels lie within ellipse area in Python
I'm trying to create true/false mask based on test whether pixels are inside ellipse area or not.
Straightforward ways were proposed here - Counting points inside an ellipse
However, I'm wondering ...
0
votes
2answers
496 views
Python: find maximum x-value and maximum y-value in text file
i have question about finding maximum x or y-value in text file. This is necessary for point in polygon algorithm.
Polygons are entered in text file together with point, that is in or out polygon and ...
0
votes
2answers
256 views
Geodjango with Mysql coordinates/polygons precision
I've created a geodjango database working with MySQL.
My problem is that when I add a new record with a PolygonField and then check
for a point if it is inside this polygon I get a wrong results ...
4
votes
4answers
3k views
Determine if point is in polygon or passed through
I'm trying to figure out how best to do this, if I have a vector (a line consisting of 2 points) on a 2d plane how can I determine if it has passed through a polygon?
I know I can take each line ...
2
votes
0answers
141 views
How to visualize polygonal planes in Mayavi2?
I have hard times to visualize lots of planes in 3D (e.g., of 4 points) using Mayavi2 with Python.
I couldn't find any polygon command within Mayavi2, tried to use mesh, surf etc but mostly ...
2
votes
3answers
372 views
Generate a polygon of landmasses in python
Is anyone able to recommend a generator, algorithm or any other easy way of generating a bunch of random landmasses to make up a planet.
The idea is that i will be able to project this onto a circle ...
5
votes
3answers
3k views
SciPy Create 2D Polygon Mask
I need to create a numpy 2D array which represents a binary mask of a polygon, using standard Python packages.
input: polygon vertices, image dimensions
output: binary mask of polygon (numpy 2D ...
2
votes
1answer
450 views
library for representing 3D polyhedra
Are there any libraries that provide 3D polyhedra, and support calculating the intersection of two polyhedra?
If it makes a difference, the polyhedra I want to model do not have 'holes' in them.
The ...
2
votes
1answer
851 views
How to convert a GEOS MultiLineString to Polygon using Python?
I am developing a GeoDjango application where users can upload map files and do some basic mapping operations like querying features inside polygons.
I recognized that users happen to upload ...
1
vote
2answers
487 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 ...
1
vote
3answers
2k views
3D Polygons in Python
As far as I am aware there is no inbuilt polygon functionality for Python. I want to create a 3D map and figured that polygons would be the best way to go about it.
Not wanting to reinvent the wheel ...
7
votes
4answers
1k views
What happened to the python bindings for CGAL?
I found the Computational Geometry Algorithms Library in my search for an algorithm to decompose a concave polygon into the minimum number of convex components. Links off the site and numerous google ...
