diff options
| author | Andrew Harris <aharris@outsideinc.com> | 2025-01-10 10:11:03 -0500 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-02-03 11:34:23 +0000 |
| commit | 5f30fd2358fd60a514bdba31594bfc8122f30167 (patch) | |
| tree | d268203d195f4c384b9b806eb538f3e88b633842 /docs | |
| parent | 198b30168d4e94af42e0dc7967bd3259b5c5790b (diff) | |
Refs #36036 -- Added support for GEOSHasM.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/gis/geos.txt | 9 | ||||
| -rw-r--r-- | docs/releases/6.0.txt | 3 |
2 files changed, 10 insertions, 2 deletions
diff --git a/docs/ref/contrib/gis/geos.txt b/docs/ref/contrib/gis/geos.txt index b3825e09c4..58097434e8 100644 --- a/docs/ref/contrib/gis/geos.txt +++ b/docs/ref/contrib/gis/geos.txt @@ -312,7 +312,14 @@ Properties .. attribute:: GEOSGeometry.hasz - Returns a boolean indicating whether the geometry is three-dimensional. + Returns a boolean indicating whether the geometry has the Z dimension. + +.. attribute:: GEOSGeometry.hasm + + .. versionadded:: 6.0 + + Returns a boolean indicating whether the geometry has the M dimension. + Requires GEOS 3.12. .. attribute:: GEOSGeometry.ring diff --git a/docs/releases/6.0.txt b/docs/releases/6.0.txt index 03b1c52c1d..9dd7100c74 100644 --- a/docs/releases/6.0.txt +++ b/docs/releases/6.0.txt @@ -65,7 +65,8 @@ Minor features :mod:`django.contrib.gis` ~~~~~~~~~~~~~~~~~~~~~~~~~ -* ... +* The new :attr:`.GEOSGeometry.hasm` property checks whether the geometry has + the M dimension. :mod:`django.contrib.messages` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
