关于 geodjango 的澄清
我是 geodjango 的新手。我正在为我的应用程序使用 geodjango 模型。在我的 geodjango 模型类之一中,我使用 PointField() 类型的位置字段。我想将每个条目的位置存储到该模型类表中。任何人都可以帮助我如何将值插入该字段,或者任何人都可以建议一个参考模型来理解 geodjango。
I am new to geodjango. I am using a geodjango model for my application. in one of my geodjango model class I am using a location field of type PointField() . I want to store the location for each entry into that model class Table. Could anyone please help me how to insert values into that field, Or could anyone please suggest a reference model for making an understanding of geodjango.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
教程是一个很好的起点。
The tutorial is a good starting point.
您需要使用 WKT 格式。一些示例:
您还可以使用
OSMGeoAdmin
或GeoModelAdmin
替代ModelAdmin
来获取可在其上绘制数据的地图。You need to use WKT format. Some examples:
You can also use
OSMGeoAdmin
orGeoModelAdmin
as a replacement forModelAdmin
to get a map that you can draw your data on.