#26 Annual conservation report

* WIP: EcoAccountReport
This commit is contained in:
2021-10-19 16:06:19 +02:00
parent b9b1d64278
commit 31ae3dd430
9 changed files with 208 additions and 70 deletions

View File

@@ -312,4 +312,5 @@ class Geometry(BaseResource):
Outsourced geometry model so multiple versions of the same object can refer to the same geometry if it is not changed
"""
from konova.settings import DEFAULT_SRID
geom = MultiPolygonField(null=True, blank=True, srid=DEFAULT_SRID)
# Read more about geography=True here: https://docs.djangoproject.com/en/3.2/ref/contrib/gis/model-api/#geography
geom = MultiPolygonField(null=True, blank=True, srid=DEFAULT_SRID, geography=True)