1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Refs #35058 -- Added support for measured geometries to GDAL Polygon.

This commit is contained in:
David Smith
2024-01-31 12:11:16 +00:00
committed by GitHub
parent b9e2a3fc63
commit d3922e9e5a
3 changed files with 36 additions and 5 deletions

View File

@@ -79,8 +79,9 @@ Minor features
``Z`` coordinate dimension.
* :class:`~django.contrib.gis.gdal.OGRGeometry`,
:class:`~django.contrib.gis.gdal.Point`, and
:class:`~django.contrib.gis.gdal.LineString` now support measured geometries
:class:`~django.contrib.gis.gdal.Point`,
:class:`~django.contrib.gis.gdal.LineString`, and
:class:`~django.contrib.gis.gdal.Polygon` now support measured geometries
via the new :attr:`.OGRGeometry.is_measured` and ``m`` properties, and the
:meth:`.OGRGeometry.set_measured` method.