本文整理汇总了Python中matplotlib.collections.LineCollection.shp2dbf_row方法的典型用法代码示例。如果您正苦于以下问题:Python LineCollection.shp2dbf_row方法的具体用法?Python LineCollection.shp2dbf_row怎么用?Python LineCollection.shp2dbf_row使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.collections.LineCollection
的用法示例。
在下文中一共展示了LineCollection.shp2dbf_row方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: map_line_shp
# 需要导入模块: from matplotlib.collections import LineCollection [as 别名]
# 或者: from matplotlib.collections.LineCollection import shp2dbf_row [as 别名]
def map_line_shp(shp, which='all', bbox=None):
'''
Create a map object from a line shape
...
Arguments
---------
shp : iterable
PySAL line iterable (e.g.
shape object from `ps.open` a line 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 lines from the shape
This includes the attribute `shp2dbf_row` with the
cardinality of every line 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 xy in shape.parts:
patches.append(xy)
rows.append(i)
i += 1
else:
for inwhich, shape in zip(which, shp):
if inwhich:
for xy in shape.parts:
patches.append(xy)
rows.append(i)
i += 1
lc = LineCollection(patches)
_ = _add_axes2col(lc, bbox)
lc.shp2dbf_row = rows
return lc
示例2: map_line_shp
# 需要导入模块: from matplotlib.collections import LineCollection [as 别名]
# 或者: from matplotlib.collections.LineCollection import shp2dbf_row [as 别名]
def map_line_shp(shp, which="all"):
"""
Create a map object from a line shape
...
Arguments
---------
shp : iterable
PySAL line iterable with the attribute `bbox` (e.g.
shape object from `ps.open` a poly shapefile)
which : str/list
Returns
-------
map : PatchCollection
Map object with the lines from the shape
This includes the attribute `shp2dbf_row` with the
cardinality of every line to its row in the dbf
(zero-offset)
"""
patches = []
rows = []
i = 0
if which == "all":
for shape in shp:
for xy in shape.parts:
patches.append(xy)
rows.append(i)
i += 1
else:
for inwhich, shape in zip(which, shp):
if inwhich:
for xy in shape.parts:
patches.append(xy)
rows.append(i)
i += 1
lc = LineCollection(patches)
_ = _add_axes2col(lc, shp.bbox)
lc.shp2dbf_row = rows
return lc