本文介绍django.contrib.gis.gdal.SpatialReference.__getitem__
的用法。
声明
__getitem__(target)
如果节点不存在,则返回给定字符串属性节点的值 None
。也可以取一个元组作为参数,(target, child),其中child是WKT中属性的索引。例如:
>>> wkt = 'GEOGCS["WGS 84", DATUM["WGS_1984, ... AUTHORITY["EPSG","4326"]]')
>>> srs = SpatialReference(wkt) # could also use 'WGS84', or 4326
>>> print(srs['GEOGCS'])
WGS 84
>>> print(srs['DATUM'])
WGS_1984
>>> print(srs['AUTHORITY'])
EPSG
>>> print(srs['AUTHORITY', 1]) # The authority value
4326
>>> print(srs['TOWGS84', 4]) # the fourth value in this wkt
0
>>> print(srs['UNIT|AUTHORITY']) # For the units authority, have to use the pipe symbol.
EPSG
>>> print(srs['UNIT|AUTHORITY', 1]) # The authority value for the units
9122
相关用法
- Python Django SpatialReference用法及代码示例
- Python Django SplitArrayField.remove_trailing_nulls用法及代码示例
- Python Scipy integrate.quadrature()用法及代码示例
- Python Scipy stats.hypsecant.moment()用法及代码示例
- Python String Center()用法及代码示例
- Python Django SimpleTestCase.client用法及代码示例
- Python Django Signal用法及代码示例
- Python Scipy stats.hypsecant.median()用法及代码示例
- Python Sympy Ellipse.equation()用法及代码示例
- Python String decode()用法及代码示例
- Python String转Binary用法及代码示例
- Python String count()用法及代码示例
- Python Scipy stats.halfgennorm.fit()用法及代码示例
- Python Tableau Server用法及代码示例
- Python Sympy encloses_point()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python Scipy stats.halfgennorm.stats()用法及代码示例
- Python Set issubset()用法及代码示例
- Python Sympy Plane.perpendicular_plane()用法及代码示例
- Python Scipy stats.halfgennorm.moment()用法及代码示例
- Python Scipy stats.halfgennorm.std()用法及代码示例
- Python Scipy stats.halfgennorm.logcdf()用法及代码示例
- Python String转Long用法及代码示例
- Python Django SearchHeadline用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.gis.gdal.SpatialReference.__getitem__。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。