Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6654437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:23:25+00:00 2026-05-26T01:23:25+00:00

We need to figure out a quick and fairly accurate method for point-in-polygon for

  • 0

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 extensions, and did implement that too –

SELECT id, Contains( PolyFromText( 'POLYGON(".$polygonpath.")' ) , PointFromText( concat( \"POINT(\", latitude, \" \", longitude, \")\" ) ) ) AS
            CONTAINS
FROM tbl_points

That did not however work with polygons made up of a large number of points 🙁

After some more research – came across a standard algorithm called the Ray-casting algorithm but before trying developing a query for that in MySQL, wanted to take my chances if someone had already been through that or came across a useful link which shows how to implement the algorithm in MySQL / SQL-server.

So, cutting it short – question is:

Can anyone please provide the MySQL/SQL-server implementation of Ray casting algorithm?

Additional detail:

  • Polygons are either of concave, convex or complex.
  • Targeting quick execution over 100% accuracy.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T01:23:26+00:00Added an answer on May 26, 2026 at 1:23 am

    The following function (MYSQL version of Raycasting algorithm) rocked my world :

    CREATE FUNCTION myWithin(p POINT, poly POLYGON) RETURNS INT(1) DETERMINISTIC 
    BEGIN 
    DECLARE n INT DEFAULT 0; 
    DECLARE pX DECIMAL(9,6); 
    DECLARE pY DECIMAL(9,6); 
    DECLARE ls LINESTRING; 
    DECLARE poly1 POINT; 
    DECLARE poly1X DECIMAL(9,6); 
    DECLARE poly1Y DECIMAL(9,6); 
    DECLARE poly2 POINT; 
    DECLARE poly2X DECIMAL(9,6); 
    DECLARE poly2Y DECIMAL(9,6); 
    DECLARE i INT DEFAULT 0; 
    DECLARE result INT(1) DEFAULT 0; 
    SET pX = X(p); 
    SET pY = Y(p); 
    SET ls = ExteriorRing(poly); 
    SET poly2 = EndPoint(ls); 
    SET poly2X = X(poly2); 
    SET poly2Y = Y(poly2); 
    SET n = NumPoints(ls); 
    WHILE i<n DO 
    SET poly1 = PointN(ls, (i+1)); 
    SET poly1X = X(poly1); 
    SET poly1Y = Y(poly1); 
    IF ( ( ( ( poly1X <= pX ) && ( pX < poly2X ) ) || ( ( poly2X <= pX ) && ( pX < poly1X ) ) ) && ( pY > ( poly2Y - poly1Y ) * ( pX - poly1X ) / ( poly2X - poly1X ) + poly1Y ) ) THEN 
    SET result = !result; 
    END IF; 
    SET poly2X = poly1X; 
    SET poly2Y = poly1Y; 
    SET i = i + 1; 
    END WHILE; 
    RETURN result; 
    End; 
    

    Add

      DELIMITER ;; 
    

    before the function as required.
    The usage for the function is:

     SELECT myWithin(point, polygon) as result;
    

    where

     point  = Point(lat,lng) 
     polygon = Polygon(lat1 lng1, lat2 lng2, lat3 lng3, .... latn lngn, lat1 lng1)
    

    Please note that the polygon ought to be closed (normally it is closed if you’re retrieving a standard kml or googlemap data but just make sure it is – note lat1 lng1 set is repeated at the end)

    I did not have points and polygons in my database as geometric fields, so I had to do something like:

     Select myWithin(PointFromText( concat( "POINT(", latitude, " ", longitude, ")" ) ),PolyFromText( 'POLYGON((lat1 lng1, ..... latn lngn, lat1 lng1))' ) ) as result
    

    I hope this might help someone.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to figure out what div is visible out of four possible divs
I need to figure out the hard drive name for a solaris box and
I need to figure out how to get the data from D3D textures and
I need to figure out a way to insert a record with a java.util.Date
I need to figure out the size of a remote file before I download
So i need to figure out how i can get a record count value
I understand that I need to figure out my own homework, but seeing that
From the following HTML I need to figure out which List tag has class
I UIButton using + buttonWithType: What I need to figure out is how to
I'm working on a web-application and need to figure out the best way to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.