msql is in bounds search

SELECT * 
FROM (
	SELECT 	*,			
			GeomFromText(CONCAT('Point(', e.geo_latitude,' ',e.geo_longitude,')')) as _point			
	FROM events e
	WHERE e.eventdate 	>= NOW()
	AND e.city 			= 'vancouver'
    AND e.seasonal 		= 'halloween-parties'
) as points
WHERE MBRContains(GeomFromText( 'LINESTRING(49.28090714399665 -123.04745683323608,49.28930518918205 -123.02033433567749)' ), points._point)

 

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.