php中的空间索引查询

发布于 2024-07-24 04:23:06 字数 195 浏览 3 评论 0原文

我正在尝试用 PHP 编写空间索引查询。 但我在为以下代码行编写查询时遇到问题......

SET @p = CONCAT('Polygon((',lat1,'',lon1,',',lat1,'',lon2,',',lat2,'',lon2,',',lat2,'',lon1,',',lat1,'',lon1,'))');

I'm trying to write a query in PHP for a spatial index. But I'm having trouble writing the query for the following line of code...

SET @p = CONCAT('Polygon((',lat1,'',lon1,',',lat1,'',lon2,',',lat2,'',lon2,',',lat2,'',lon1,',',lat1,'',lon1,'))');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

能否归途做我良人 2024-07-31 04:23:06

如果您在 php 中使用 mysql 扩展,则此查询返回错误。 如果使用 mysql 扩展,请使用 mysqli 扩展

if you use mysql extension in php , this query returned to error. if use mysql extension , please use mysqli extension

向日葵 2024-07-31 04:23:06

通常正确的顺序(有一些奇怪的例外)是(long lat),而不是(lat long)。 或者您只是在 lat1 long1 之间的 concat 中缺少一个空格? WKT 语法为:

GeomFromText('POLYGON(long1 lat1, long2 lat2, long3 lat3)')

坐标用空格分隔,点用逗号分隔。 甚至可能存在大小写敏感问题,尽管规范不区分大小写,但最好使用全部大写,并且我收到了我认为与大小写相关的错误。

The generally correct order (with a few odd exceptions) is (long lat), not (lat long). Or are you just missing a space in your concat between lat1 long1? The WKT syntax is:

GeomFromText('POLYGON(long1 lat1, long2 lat2, long3 lat3)')

Coordinates are separated by a space, points by a comma. There may even be a case sensitivity problem, though the spec is case insensitive, it is best to use ALL CAPS, and I have gotten errors that I think were related to case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文