本文介紹 django.contrib.gis.gdal.CoordTransform
的用法。
聲明
class CoordTransform(source, target)
表示坐標係變換。它用兩個
初始化,分別代表源坐標係和目標坐標係。在不同的幾何圖形上重複執行相同的坐標變換時,應使用這些對象:SpatialReference
>>> ct = CoordTransform(SpatialReference('WGS84'), SpatialReference('NAD83'))
>>> for feat in layer:
... geom = feat.geom # getting clone of feature geometry
... geom.transform(ct) # transforming
相關用法
- Python Django ContentTypeManager用法及代碼示例
- Python Condition release()用法及代碼示例
- Python Collections.UserString用法及代碼示例
- Python Condition notify()用法及代碼示例
- Python Django ContextMixin.get_context_data用法及代碼示例
- Python Condition wait()用法及代碼示例
- Python Django Coalesce用法及代碼示例
- Python Django Cot用法及代碼示例
- Python Collections.UserDict用法及代碼示例
- Python Collections.UserList用法及代碼示例
- Python Condition acquire()用法及代碼示例
- Python Django ContentFile用法及代碼示例
- Python Django Collate用法及代碼示例
- Python Condition notify_all()用法及代碼示例
- Python Django ComboField.fields用法及代碼示例
- Python Django Concat用法及代碼示例
- Python Django Cos用法及代碼示例
- Python Django ContextMixin.extra_context用法及代碼示例
- Python Tableau CSVRequestOptions用法及代碼示例
- Python Calendar itermonthdays2()用法及代碼示例
- Python Calendar monthdatescalendar()用法及代碼示例
- Python CSV轉JSON用法及代碼示例
- Python Django CustomUserManager.create_user用法及代碼示例
- Python Calendar itermonthdates()用法及代碼示例
- Python Calendar iterweekdays()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.contrib.gis.gdal.CoordTransform。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。