在 CakePHP 中处理空间数据
我有一个数据库,其中有一个空间数据字段和一个 cakephp 接口。在 MySQL 中,我可以通过执行以下操作来保存数据:
INSERT INTO Nodes (Location) VALUES (GeomFromText('POINT(42.450071 -76.487664)'))
如何使 Cake 从 Web 表单中获取纬度和经度并以这种方式插入?我制作了一个读取空间数据的模型,但我不知道如何使其以空间格式写入。
感谢您的任何见解。
-安德鲁
I have a database with a field for spatial data and a cakephp interface for it. In MySQL I can save the data by doing:
INSERT INTO nodes (Location) VALUES (GeomFromText('POINT(42.450071 -76.487664)'))
How can I make Cake take the latitude and longitude from a web form and insert it in this manner? I made a model that reads spatial data but I can't figure out how to make it write in spatial format.
Thanks for any insight.
-Andrew
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您知道要查找什么,否则在手册中找到它有点棘手,但这应该对您有所帮助:
http://book.cakephp.org/view/1027/query
例如沿着行:
It's a little tricky to find in the manual unless you know what to look for, but this should help you:
http://book.cakephp.org/view/1027/query
e.g. something along the lines of: