django - 使用 GeoDjango 从十进制坐标在 PostgreSQL 数据库中添加一个点
我正在将 PostGIS 与 django 一起使用。我知道如何从十进制坐标在 PostgreSQL 上添加“POINT”,但是如何使用 GeoDjango 添加它?
这就是我在 PostgreSQL 中的做法:
UPDATE "my_table" SET coordinates=GeometryFromText('POINT(-93.7505 31.3059)',4269) WHERE id=101;
How do I do the same thing from django?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我认为您所要求的:
GeoDjango 使用对象关系映射器。在您的 models.py 中,您必须定义一个包含点的模型,例如:
然后,在您的一个视图中,您需要实例化一个 my_points 对象:
我想这在语法上并不完美,但是GeoDjango 模型 api: http://docs.djangoproject.com/ en/dev/ref/contrib/gis/model-api/ 和常规 geodjango 模型指南:http://docs.djangoproject.com/en/dev/topics/db/models/ 可能会带你去你需要去的地方。希望有帮助。
编辑:
好吧,我没看懂你的帖子。 “添加一点”向我表明您想添加一个。不过,您的 SQL 语句用于更新值。
要更新数据库中的值,您仍然需要一个模型。我将继续假设您设置了一个名为“my_points”的模型。
Here's what I think you're asking for:
GeoDjango uses an object relational mapper. In your models.py, you'll have to define a model that includes a point, e.g:
Then, in one of your views, you'll need to instantiate a my_points object:
I imagine this isn't syntactically perfect, but the GeoDjango model api: http://docs.djangoproject.com/en/dev/ref/contrib/gis/model-api/ and the regular geodjango models guide: http://docs.djangoproject.com/en/dev/topics/db/models/ will probably get you where you need to go. Hope that helps.
Edit:
Okay, I didn't understand your post. "add a POINT" indicated to me that you wanted to add one. Your SQL statement is for updating a value, though.
To update values in a database, you'll still need a model. I'm going to proceed on the assumption that you have a model set up called "my_points".