當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Django GEOSGeometry.normalize用法及代碼示例


本文介紹 django.contrib.gis.geos.GEOSGeometry.normalize 的用法。

聲明

GEOSGeometry.normalize()

將此幾何轉換為規範形式:

>>> g = MultiPoint(Point(0, 0), Point(2, 2), Point(1, 1))
>>> print(g)
MULTIPOINT (0 0, 2 2, 1 1)
>>> g.normalize()
>>> print(g)
MULTIPOINT (2 2, 1 1, 0 0)

相關用法


注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.contrib.gis.geos.GEOSGeometry.normalize。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。