本文整理汇总了Python中matplotlib.collections.PolyCollection.shp2dbf_row方法的典型用法代码示例。如果您正苦于以下问题:Python PolyCollection.shp2dbf_row方法的具体用法?Python PolyCollection.shp2dbf_row怎么用?Python PolyCollection.shp2dbf_row使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.collections.PolyCollection
的用法示例。
在下文中一共展示了PolyCollection.shp2dbf_row方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: map_poly_shp
# 需要导入模块: from matplotlib.collections import PolyCollection [as 别名]
# 或者: from matplotlib.collections.PolyCollection import shp2dbf_row [as 别名]
def map_poly_shp(shp, which='all', bbox=None):
'''
Create a map object from a polygon shape
...
Arguments
---------
shp : iterable
PySAL polygon iterable (e.g.
shape object from `ps.open` a poly shapefile) If it does
not contain the attribute `bbox`, it must be passed
separately in `bbox`.
which : str/list
List of booleans for which polygons of the shapefile to
be included (True) or excluded (False)
bbox : None/list
[Optional. Default=None] List with bounding box as in a
PySAL object. If nothing is passed, it tries to obtain
it as an attribute from `shp`.
Returns
-------
map : PatchCollection
Map object with the polygons from the shape
This includes the attribute `shp2dbf_row` with the
cardinality of every polygon to its row in the dbf
(zero-offset)
'''
if not bbox:
bbox = shp.bbox
patches = []
rows = []
i = 0
if which == 'all':
for shape in shp:
for ring in shape.parts:
xy = np.array(ring)
patches.append(xy)
rows.append(i)
i += 1
else:
for inwhich, shape in zip(which, shp):
if inwhich:
for ring in shape.parts:
xy = np.array(ring)
patches.append(xy)
rows.append(i)
i += 1
pc = PolyCollection(patches)
_ = _add_axes2col(pc, bbox)
pc.shp2dbf_row = rows
return pc
示例2: map_poly_shp
# 需要导入模块: from matplotlib.collections import PolyCollection [as 别名]
# 或者: from matplotlib.collections.PolyCollection import shp2dbf_row [as 别名]
def map_poly_shp(shp, which="all"):
"""
Create a map object from a polygon shape
...
Arguments
---------
shp : iterable
PySAL polygon iterable with the attribute `bbox` (e.g.
shape object from `ps.open` a poly shapefile)
which : str/list
List of booleans for which polygons of the shapefile to
be included (True) or excluded (False)
Returns
-------
map : PatchCollection
Map object with the polygons from the shape
This includes the attribute `shp2dbf_row` with the
cardinality of every polygon to its row in the dbf
(zero-offset)
"""
patches = []
rows = []
i = 0
if which == "all":
for shape in shp:
for ring in shape.parts:
xy = np.array(ring)
patches.append(xy)
rows.append(i)
i += 1
else:
for inwhich, shape in zip(which, shp):
if inwhich:
for ring in shape.parts:
xy = np.array(ring)
patches.append(xy)
rows.append(i)
i += 1
pc = PolyCollection(patches)
_ = _add_axes2col(pc, shp.bbox)
pc.shp2dbf_row = rows
return pc