我正在构建一个 REST API 来管理与地理相关的数据。
我的前端开发人员希望根据缩放级别以geoJSON
格式检索多边形的质心。
我的多边形模型如下:
...
from django.contrib.gis.db import models as geomodels
class Polygon(geomodels.Model):
fk_owner = models.ForeignKey(User, on_delete=models.DO_NOTHING, blank=True)
external_id = models.CharField(max_length=25, unique=True)
func_type = models.CharField(max_length=15)
coordinates = geomodels.PolygonField(srid=3857)
properties = JSONField(default={})
API 当前返回如下内容:
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [[[..]]]
}
}]
我rest_framework_gis.serializers.GeoFeatureModelSerializer
用来序列化我的数据。
我看到以下获取质心的方法:
- 向我的模型添加列质心:我不想这样做
- 创建我的模型的数据库视图:Django 不管理数据库视图,我不想编写自定义迁移
使用相同的模型并在
extra(...)
我的 orm 语句中添加一个:我尝试过,但在序列化之前或之前事情变得很困难,因为在模型中类型是Polygon
,而质心是Point
. 错误如下:TypeError: Cannot set Polygon SpatialProxy (POLYGON) with value of type: <class 'django.contrib.gis.geos.point.Point'>
预期的输出应该是:
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [..]
}
}]
你有什么意见 ?