Tagged Questions
0
votes
0answers
31 views
Polygon String to jts Geometry
Can some one suggest me how to convert a polygon string to jts Geometry, without parsing the string?
POLYGON((-86.82373046875 39.6923828125,-85.1318359375 39.8681640625,-85.32958984375 ...
2
votes
1answer
140 views
Find polygons from set of lines
I'm working in 2D.
My user can draw some lines & line-segments, which I store in a custom object class, but basically in startX-Y & endX-Y.
Now I want to find, actually only the polygon ...
2
votes
3answers
89 views
measuring the roundness of polygons gives incorrect numbers with javascript
EDIT see my comment below (the issue has not been resolved). Anyone who wants to try my code can do it here: http://tinker.io/e0676
EDIT2 I think I have found the problem: ...
5
votes
3answers
142 views
Polygon infill algorithm
I'm working on mesh slicing utility for 3d printing purposes. In general it should slice a 3d mesh model into 2d shapes (a number of polygons, probably with holes) and fill them with paths of ...
0
votes
2answers
86 views
Finding if point is inside geometry
I am writing a code that requires finding if a point is inside a specific geometry. The geometry may an n sided polygon (not necessarily convex) in 2 Dimensions or an STL geometry in 3 dimensions. I ...
-2
votes
3answers
140 views
extract grid coordinates of the polygon [closed]
I have a grid map, constructed using Matlab. I am placing some polygons on it. How can i extract the grid coordinates that are inside these polygons? thanks..
% construct grid
MAX_X=10;
MAX_Y=10;
...
1
vote
1answer
46 views
Split 2D quad by line
I found many implementations that deal with splitting a polygon by a given line, but I only need to split a Quad (rectangle with 4 vertexes).
Is there an algorithm optimized for this task? Simplicity ...
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 ...
10
votes
3answers
405 views
Polygon inside polygon inside polygon
I have number of simple polygons which do not intersect each other but some polygons may be embedded into others.
For example:
+--------------------------------------------+
| ...
0
votes
1answer
62 views
Polygon with vertex from a set of point
how can i make a polygon from given set of point.
possible polygon :
invalid polygon :
the polygon must be not self intersecting.
i have been thinking about sorting the point based on one ...
1
vote
2answers
447 views
How to find the area of a complex polygon - c++
For non-complex polygons, it's pretty simple:
A = 1/2 * (x1*y2 - x2*y1 + x2*y3 - x3*y2 + ... + x(n-1)*yn - xn*y(n-1) + xn*y1 - x1*yn)
Here is my implementation in C++:
struct Point {
double ...
0
votes
1answer
39 views
How to find the coeffecients(a,b,c,d) of a planar polygon
Given the normal of the plane,Centroid of the plane,the bais vectors,and some(>4) points on the plane , i want to find out the co-effecients(a,b,c,d) of the planar polygon.
Is there a better way than ...
1
vote
1answer
177 views
Operation on polygon - how to sort found vertices
I have two concave polygons on input represented as two vectors of points. I want to do some polygon operation on it - union, intersection and difference. I found intersection points between these ...
1
vote
3answers
99 views
“ray through vertex” special case when detecting point in polygon
To detect if a point is in a polygon, you project a line from the point, to infinity, and see how many of polygon's vertices it intersects with... simple enough. My problem is that if the ray ...
2
votes
1answer
182 views
Drawing a square around a lat-long point
I'm trying to draw a square around a given point on the earth's surface.
I'm using information I retrieved from here and here and ultimately came up with this:-
// Converting degrees to ...
3
votes
1answer
152 views
Locating Bounding 2D Entities
Given a point and a set of arbitrary 2D entities (circles, polygons, lines, polylines, arcs, etc.), does anyone know of existing strategies to:
Determine if the point is enclosed (bounded) by any ...
1
vote
2answers
197 views
Pixel overlap with polygon: efficient (scanline-type) algorithm
Problem specification:
I have a rectangular and uniformly spaced image of pixels with vertex coordinates (i,j), (i+1,j), (i, j+1), (i+1, j+1) [i=0,...,m-1; j=0,...,n-1] and a polygon P with vertex ...
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
0answers
137 views
importing polygon from json file to mysql using PHP
I'm trying to import a large amount of parsed JSON files ( 4 gb). I want to insert it al in a mysql database for QGis. At first i thought i could import everything directly with mongodb and RazorSQL, ...
0
votes
4answers
256 views
There are 6 equilateral triangles within a hexagon, given an x,y coordinate, how can I determine which equilateral triangle the coordinate is in? [closed]
I am creating a game in 3D Virtual world. I have created a hexagon using 6 equilateral triangles numbered t1,t2,t3,t4,t5,t6
Given an x,y coordinate within the hexagon, what formula can I use to ...
1
vote
2answers
242 views
Most efficient way to check if a point is in or on a convex quad polygon
I'm trying to figure out the most efficient/fast way to add a large number of convex quads (four given x,y points) into an array/list and then to check against those quads if a point is within or on ...
0
votes
0answers
109 views
Warp array of vertices (polygon) according to the bounding box
I'm working in Objective-C, and storing my vertices points in an NSArray.
I have an array of 2D vertices with their bounding box, which I call "polygon".
I would like to distort the whole polygon ...
0
votes
1answer
249 views
Draw a rectangle arround a polygon when given in certain angle
Using Google Maps V3 API
How can I draw a rectangle (It wouldn't exactly be a google map rectangle anymore but a rectangular polygon) around a polygon. Important however is that the rectangle has be ...
1
vote
1answer
698 views
Order concave polygon vertices counterclockwise
I have a set of points that are on the boundary of a concave polygon. I would like to find one non crossing polygon that have these points as vertices. In other words, I would like to order in a ccw ...
2
votes
1answer
64 views
Shift trace of polygon by given vector
I need algorithm to get shift trace of given polygon by given 2d-vector.
Given valid polygon with no holes, but possibly concave.
Operation performs on plane, so the result might be a polygon, ...
2
votes
1answer
266 views
Compute length of segment intersecting a polygon in 2D
Given a segment S and a polygon P, is there a fast algorithm that returns the total length of the subsegments of S crossing polygon P?
Note: P is defined by a closed LineString (i.e.: an array of ...
2
votes
3answers
107 views
What is the complexity of this code?
I have a the above model represented in a Face Table List where the F1, F2,...F_n are the faces of the model and their face number is the index of the list array. Each list element is another array ...
3
votes
4answers
325 views
Scale a polygon so the edges match up
I'm working on a project using a JavaScript canvas and need to be able to snap the cursor to a certain distance from a polygon. I can already snap to the polygon itself, but I need to have the cursor ...
1
vote
1answer
729 views
Rotating polygon coordinates on a map (Google Map API)
I have a set of latitude and longitude coordinates in an array. When plotted as points on a Polygon in Google Maps, they form roughly an irregular oval pointing from west to east.
I would like to ...
0
votes
3answers
862 views
SQL Server geometry: intersection of multiple polygons
I have multiple polygons in a table (ImageId int, Quality float, Border geometry).
How can I find all intersects of polygons using T-SQL functions with more high performance? Is there are any ...
9
votes
2answers
342 views
find the smallest containing convex polygon with a given number of points
given a convex polgyon and a number N, how do I find the smallest polygon that
contains every point from the original polygon
has exactly N corner points
For example, suppose I have a set of ...
2
votes
2answers
131 views
Polygon region computation
So, for work I'm working on a robot controller that explores an arbitrary region. The region is defined by a series of vertices (it's a polygon). Here's an example:
The robot starts in the middle ...
0
votes
2answers
406 views
Outer Bounding Points of Image/Shape using C#
I have some images that I'd like to draw a polyon around the outer edges. The images themselves are on transparent backgrounds and I've created an array of the pixels in the images which contain a ...
5
votes
5answers
513 views
How could I simplify a complex polygon?
Recently I've been thinking about how to transform a complex polygon into a non-complex polygon. How is this done?
This is the sort of thing I want to do:
I'm going to end up with JavaScript when ...
5
votes
1answer
386 views
Get simple polygons
I have a polygon C as below:
C = 10 0
2 0
2 2
0 2
2 0
0 0
0 10
10 10
where the first column represents x's coordinate and the ...
0
votes
1answer
133 views
Creating a heptagon in MATLAB
I need to create a heptagon. I want to do this by creating one triangle and then loop to draw it again after I have rotated it.
x1 = [ 0.5, 0.48, 0.55 ];
y1 = [ 0.5, 0.578, 0.558 ];
fill( x1, y1, ...
2
votes
2answers
200 views
How to “soften” the edges of a polyline?
Given a line made up of several points, how do I make the line smoother/ curvier/ softer through adding intermediate points -- while keeping the original points completely intact and unmoved?
To ...
2
votes
1answer
316 views
Decimals in MySQL Polygon Geometry
I have searched high and low for a clue to or even the answer to the following question and have got nowhere so hence me asking on here.
Basically, I'm trying to populate a Geometry column in MySQL ...
0
votes
1answer
565 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 ...
4
votes
1answer
1k views
How to create thiessen polygons from points using R packages?
I have multiple sets of points (for different years ~20)
I want to generate thiessen polygons for each set of points using r spatial packages.
I know this can be done using GIS but as i want a ...
2
votes
1answer
211 views
Drawing platonic solids
Say we have this bit of code to draw a regular polygon (compute it's vertex coordinates)
for i=1 to n
angle += 360/n
x = cos(angle) * radius
y = sin(angle) * radius
plot(x,y)
end
Here, the ...
1
vote
1answer
345 views
Find Minimum Number of Edge-Aligned, Overlapping Rectangles in a Non-Intersecting, Concave Polygon
I am looking for an algorithm or alogirthms I can emply to take a non-intersecting, concave polygon and find a minimum set of edge aligned rectangles partitioning the polygon. The rectangles can ...
0
votes
1answer
249 views
How to implement Area.contains(Area)?
There are 2 areas (java.awt.geom.Area) area1 and area2. I need to verify if area2 is inside area1? (area1 contains area2).
I have tried:
areaDelta = (Area)area1.clone();
areaDelta.add(area2);
return ...
2
votes
4answers
3k views
How to determine if a point is inside a 2D convex polygon?
I have a convex polygon (typically just a rotated square), and I know all of 4 points. How do I determine if a given point (yellow/green) is inside the polygon?
EDIT: For this particular project, ...
1
vote
1answer
470 views
Polygon from collection of Latitudes & Longitudes
I have a collection of latitudes and longitudes and I'll be grabbing sets of these and want to draw a polygon based on them.
The datasets won't be the outline so will need an algorithm to establish ...
0
votes
2answers
206 views
Rectilinearize a non-intersecting polygon
I have some non-intersecting polygon, and I need to "square" it up so that all angles are 90 degree angles.
Is there a good algorithm to do this?
EDIT
Allowing self-intersections in the resultant ...
3
votes
3answers
1k views
Create a polygon around a polyline like a buffer
I have looked around to find an example of how to take a polyline and create a buffer around it so I end up with a polygon.
So far I found out I need Minkowskis Sums to do so, but I can't get my head ...
0
votes
2answers
84 views
How to determine ring points' orientation correctly?
Based on How to determine if a list of polygon points are in clockwise order?
I've come up with the following code:
bool PointsClockwise(const std::vector<MyPoint>& points)
{
double ...
1
vote
2answers
335 views
Looking for Polygon Geometry library with specific capabilities
I am doing a survey of polygon/geometric algorithm libraries implemented in Objective C, C or C++ (in that order of preference). I have very specific needs, so I figured I'd ask the community to see ...
14
votes
2answers
2k views
polygon union without holes
Im looking for some fairly easy (I know polygon union is NOT an easy operation but maybe someone could point me in the right direction with a relativly easy one) algorithm on merging two intersecting ...




