Tagged Questions
5
votes
2answers
114 views
inner convex-hulls in a set of 2D points
A set of 2D Points are scattered randomly (i.e., no specified pattern), we are interested in finding all inner-convex-hulls (ICH) in an order of largest in area to a minimum until the entire study ...
5
votes
0answers
81 views
How to find the maximum-area-rectangle inside a convex polygon?
In this post we are looking for algorithms / ideas on how to find the maximum-area-rectangle inside a convex polygon.
In the following figure, numbers are the areas of the fitted rectangles. As shown ...
2
votes
2answers
350 views
Algorithm for splitting polygons/polylines into multiple sections at 180° E/W
I have code (in C++) that draws various polygons on a map that uses a cylindrical projection (typically Mercator, sometimes Miller Equidistant if you want to be precise). For simple polygons, curves ...
8
votes
3answers
283 views
Find Duplicate Polygons Algorithm
I have a group of polygons. My objective is to find the duplicate polygons from these group of polygons.
Using NetTopologySuite(A c# port of JTS), it is possible to compare two geometires and check ...
2
votes
3answers
387 views
Split polygon with holes to get several hole-less polygons
Unlike this thread I actually need to split the polygons into several hole-less polygons. I'm not sure on how to approach to this problem.
I have polygons with holes of many diferent shapes, like ...
3
votes
0answers
219 views
How to get all intersections between two simple polygons in O(n+k)? [closed]
Can someone help with a following problem: report all intersections between two simple polygons in O(n+k) where n - is a total number of polygon edges and k - is number of intersections. As a result - ...
5
votes
1answer
165 views
algorithm for displaying holes in a polygon by translating it into several hole-less polygons?
I'd like to plot polygons with holes on a framework that doesn't support holes. The approach to me seems to be to translate the single polygon into several ones adding up to the whole polygon, leaving ...
2
votes
1answer
849 views
How to get the radius of a “circle” in Openlayers
How do you get the radius of a circle in openlayers? I have searched quite a bit and cannot find any resource for this. please help.
Here is my code but I want the radius or circumference of the ...
15
votes
5answers
1k views
Algorithm to fix topological errors in GIS software apps
Related question here.
I notice that ensuring topological correctness is essential for GIS applications, this is because the input from user or polygon boolean operation can have severe topological ...
5
votes
3answers
1k views
Why doesn't the split tool return any records in the attribute table?
I've been trying to split a large land use shapefile using a set of study area polygons as the split feature, but when the function finally finishes running (the land use dataset is quite large), all ...
4
votes
1answer
789 views
How to create a polygon from other polygon boundaries?
I want to write an algorithm that creates a polygon inside a hole made by a set of other polygons. It's something like a flood fill and it's like the "boundary" tool in Autocad.
The image shows an ...
3
votes
2answers
140 views
How to bring polygons closer to a point?
I have some scattered polygons with a lot of space between them.
I want to make a thematic map but all that white space doesn't look very good, so I want to bring the polygons closer to the center of ...
6
votes
5answers
1k views
Algorithm to find polygons enclosing points
I'm trying to find an algorithm that can determine the smallest possible polygons to cover a number of points.
I know how to get the convex hull around all the points, but say that the points are ...
9
votes
2answers
718 views
PostGIS: split a polygon in a given ratio
Is there a convenient way to split a polygon into n parts, more-or-less equal in size in PostGIS?
5
votes
0answers
596 views
How to split polygons without ArcView?
I'm trying to split polygons into equal areas. While fishnet sort of works; the areas I'm trying to split don't touch; they're national parks. Fishnet spans the whole area, not just the polygons in ...
9
votes
6answers
1k views
How to find the boundary co-ordinates from a given set of co-ordinates
Given a set of coordinates, How do we find the boundary coordinates.
<== Figure 1
Given the coordinates in the above set, How can I get the coordinates on the red boundary. Boundary is the polygon ...
7
votes
6answers
2k views
Lines to Polygons
I have failed to find the "name" of the algorithm that would allow one to convert lines to polygons. Since this issues crosses GIS and the fields of computational geometry and computer science. I am ...
