Tagged Questions
Algorithm for determining whether a point is inside a polygon. Normally calculated by counting the number of polygon line segments that a ray from the point intersects.
70
votes
10answers
22k views
Point in Polygon aka hit test
What's your best, most elegant 2D "point inside polygon" or Polygon.contains(p:Point) algorithm?
Edit: There may be different answers for floats vs integers.
Primary goal is speed.
8
votes
2answers
340 views
MySQL implementation of ray-casting Algorithm?
We need to figure out a quick and fairly accurate method for point-in-polygon for lat/long values and polygons over google maps. After some research - came across some posts about mysql geometric ...
4
votes
3answers
1k 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 ...
4
votes
1answer
552 views
Point of latitude and longitude inside a complex spherical polygon
Question
What R package has a function that can determine if a coordinate is within a closed, complex spherical polygon (i.e., a point inside a polygon on Earth's surface)?
Related Links
JPL: ...
3
votes
4answers
562 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 ...
3
votes
1answer
167 views
Algorithm for fast point lookup and line of sight traversal
I'm putting together a small library that consumes Geographic Information System (GIS) data and allows for fast point in feature, point near feature, and line of sight queries. Much of this data will ...
2
votes
2answers
163 views
Determine if a latitude/longitude is within a polygon on Earth's surface
I am trying to figure out if a latitude/longitude point is contained within a polygon defined by vertexes that represent points on the earth (also lat/lon's, in clockwise order). This is trivial for ...
2
votes
2answers
416 views
Point in Polygon Hit Test in JavaScript (Chrome bug)
I am working on a game written in javaScript / jQuery. Part of my code draws a random polygon (an island) on a tile grid. I need to check if a point is inside the polygon.
I am using a ...
2
votes
5answers
241 views
Point in rectangle
What is the fastest way to find if a point is in a rectangle given in this form:
I have two points which are the centers of opposite sides of the rectangle, and a number which is the height of those ...
2
votes
2answers
1k views
Find Point in polygon PHP
i have a typical question with the Geometric datatype of mysql, polygon.
I have the polygon data, in the form of an array of latitudes and longitudes, ex:
[["x":37.628134, "y":-77.458334],
...
2
votes
2answers
491 views
Point in Polygon check with SVG and JavaScript?
I have a map that I converted from a raster graphic into an SVG file by converting the differently coloured areas into paths.
I know how to do a basic point-in-polygon check given an array of edges, ...
2
votes
2answers
158 views
Retrieve set of rectangles containing a specified point
I can't figure out how to implement this in a performing way, so I decided to ask you guys.
I have a list of rectangles - actually atm only squares, but I might have to migrate to rectangles later, ...
2
votes
2answers
436 views
Delete holes in a Polygon
I have a polygon determined by an Array of Points.
This polygon is crossing itself making some holes in the polygon itself.
My questions is: How can I omit this holes and just get the exterior ...
2
votes
1answer
391 views
MySql Geospatial bug..?
This question is for Mysql geospatial-extension experts.
The following query doesn't the result that I'm expecting:
create database test_db;
use test_db;
create table test_table (g polygon not ...
1
vote
1answer
55 views
Special polygonial for loop in two dimensional array
This is a bit tricky question for you computer scientists.
Let's say that I have a two dimensional array/matrix of 100 by 100 entries, arr[i][j]. Where i and j goes from 0-99.
This can be envisioned ...
1
vote
2answers
40 views
algorithm to recursively divide a polygon into in/out quadrants: what's it called and where's the code?
I have a lot of points (hundreds of thousands) and I want to check which ones are inside a polygon. For a relatively small polygon (i.e., likely to contain only tens or hundreds of points) I can just ...
1
vote
0answers
89 views
Finding the irregularly-shaped subview that contains a point
My main view has several (perhaps many) polygonal active areas implemented as subviews. When the user touches the view, I want to identify if she hit one of those active areas.
Is there anything ...
1
vote
2answers
260 views
How do I determine if a series of points (or polygon) is within a rectangular region?
I have been looking at posts about determining if a point lies within a polygon or not and the answers are either too vague, abstract, or complex for me. So I am going to try to ask my question ...
1
vote
2answers
142 views
Does this mySQL Stored Procedure Work?
I got the following stored procedure from http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html
Does this work?
CREATE FUNCTION myWithin(p POINT, ...
0
votes
0answers
21 views
Devide Single Polygon points into Eearth sphere
Any algorithem to split shape point into 2 spheres according to current Bounding Box ?
for example my BBox = {0 85 , 90 , 85} or {0 85 , 180 , 85} . from my Database i'm returnig SQLGeography ...
0
votes
1answer
126 views
Point-in-Polygon PHP Errors
I am using a point-in-polygon check in php, but I am getting major errors - as in points that are not in the polygon are coming up as inside.
My basic functions are typed out below (found here, ...
0
votes
1answer
76 views
How to scale polygons mapped to a resizeing picture
Im craeating a dart scoring program (to use myself in my dart room) and want the user to be able to click in different areas of a picture of a dart board to register the thrown darts.
This program ...
0
votes
3answers
97 views
Work out LatLng distance from LatLng (or point in circle) - Google Maps v3
I need to find out if certain LatLngs are inside a Google Maps Circle (one of these: http://code.google.com/apis/maps/documentation/javascript/overlays.html#Circles). How would I get around doing ...
0
votes
3answers
210 views
How to draw a n sided regular polygon in cartesian coordinates?
I have been trying to figure out how to write a simple program to compute the x,y points for creating a regular polygon of n sides. Can someone give me some code examples that don't use preexisting ...
0
votes
0answers
180 views
Check if GPS point is in Polygon native Android
So there seems to be some answers for checking if a set of a GPS coordinates are within a Polygon using Google maps API. I'd like to do this in an Android application, and I'm hoping to do it ...
0
votes
2answers
202 views
gwt-g2d: How to detect if point is in shape?
I'm trying to detect if a point is within an gwt-g2d shape.
Does anybody know how this is possible?
I just can determine if the point is within any path in the context.
Lets say i have a context ...
0
votes
1answer
214 views
Point-in-polygon for a large number of points
I'm wondering what may be the most efficient way of determining whether a large number of points (O(1 million) are inside or outside a collection (O(10)) of polygons? The latter are not necessarily ...
0
votes
0answers
335 views
How to save json to polygon data in MySQL?
I'm creating a php plugin using google maps to create a system for coverage area for a restaurant.
I found that Google can create a polygon and it gives you the area in a encrypted string, so you can ...
0
votes
3answers
490 views
How can I determine if a location (lat/long) is within a certain polygon with corners that all have a given lat/long as well in Android?
I've searched for a long time and haven't quite found the answer. There are several that come close, but nothing that seems to exactly answer my question! I would like to take a set of coordinates, ...
0
votes
1answer
473 views
Check whether or not a point is in a polygon (Google Maps API)
So I have a map here
How can I, using Google Maps API, detect whether or not a given coordinate is within that polygon? Is that possible?
Thanks in advance.
0
votes
1answer
132 views
Reading in polygons from a Object File Format (.off) file
I need to read in a list of polygons from a Object File Format (.off) file (in c++). The format of .off files is basically like this:
Header infomation
x y z //co-ords for each vertex
...
NVertices ...
0
votes
1answer
133 views
Border-Line Cases: MySQL Point-in_Polygon Function Results in Duplicates When the Point is on the Border
I'm using MySQL to pull lat longs from a database and check whether or not they are in a particular neighborhood.
Everything works great, except if the point is on the border between two ...
0
votes
2answers
831 views
Calculate pixels within a polygon
In an assignment for school do we need to do some image recognizing, where we have to find a path for a robot.
So far have we been able to find all the polygons in the image, but now we need to ...
0
votes
1answer
1k views
Adding a polygon directly in Geodjango/PostGIS
I'm messing around with Geodjango, and I just want to add a simple polygon field to a database and then run a point-in-polygon on it to to make sure everything is working okay.
Here's my code in ...