MySQL OpenGIS CROSSES doesn't seem to work for me:

SET @ls = 'LineString(1 1, 2 2, 3 3)';
SET @xx = 'LineString(0 2, 10 2)';

# SELECT AsText(EndPoint(GeomFromText(@ls)));
select crosses(GeomFromText(@ls), GeomFromText(@xx))

returns 0 - expected 1

How would I rewrite this as a MySQL function?

Bonus points for using lat, lon and spherical projection (and maybe the Great Circle.)

PS I can't create tags and I have lost my old login: Useful tags would be: MySQL OpenGIS CROSSES greatcircle lat lon - :)

link|improve this question

feedback

2 Answers

Just use INTERSECTS(line1,line2)

SET @ls = 'LineString(1 0,1 2)';
SET @xx = 'LineString(0 1, 2 1)';
select INTERSECTS(GeomFromText(@ls), GeomFromText(@xx));
link|improve this answer
I can't believe I missed that function :( duh! I'm going to leave my question as unanswered as I'd like to see if anyone has an INTERSECTS that works on a sphere. – monk.e.boy Jan 6 '11 at 10:15
SET @aa = 'LineString(0 3, 5 10)'; SET @bb = 'LineString(0 0, 10 10)'; select INTERSECTS(GeomFromText(@aa), GeomFromText(@bb)) AS i; returns 1 - these lines don't intersect? Or am I being thick? – monk.e.boy Jan 6 '11 at 12:28
OK, INTERSECTS is flawed: stackoverflow.com/questions/4610762/… – monk.e.boy Jan 6 '11 at 12:41
feedback
up vote 0 down vote accepted

OK, in the end I just implemented this: http://local.wasp.uwa.edu.au/~pbourke/geometry/lineline2d/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.