Mysql空间内三角形奇怪的结果

时间:2013-02-16 15:37:52

标签: mysql spatial

我对空间数据库的东西很新,并且不理解这个结果:

mysql> select astext(LOC), Within(LOC, GeomFromText('Polygon((1 1,20 1,1 20,1 1))') ) FROM events;
+--------------+------------------------------------------------------------+
| astext(LOC)  | Within(LOC, GeomFromText('Polygon((1 1,20 1,1 20,1 1))') ) |
+--------------+------------------------------------------------------------+
| POINT(10 5)  |                                                          1 |
| POINT(20 20) |                                                          1 |
| POINT(30 30) |                                                          0 |
+--------------+------------------------------------------------------------+
3 rows in set (0.00 sec)

我认为我所询问的是直角三角形1,1 20,1 1,20的内容,因此id期望20,20不在其中。我不能说得对吗?

干杯! 尼克

0 个答案:

没有答案