本文整理汇总了Python中plot.Plot.plot_graph_with_bgmap方法的典型用法代码示例。如果您正苦于以下问题:Python Plot.plot_graph_with_bgmap方法的具体用法?Python Plot.plot_graph_with_bgmap怎么用?Python Plot.plot_graph_with_bgmap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类plot.Plot
的用法示例。
在下文中一共展示了Plot.plot_graph_with_bgmap方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Range
# 需要导入模块: from plot import Plot [as 别名]
# 或者: from plot.Plot import plot_graph_with_bgmap [as 别名]
ur = metainfo['bbox']['upper_right']
x_range = Range(ll['lon'], ur['lon'])
y_range = Range(ll['lat'], ur['lat'])
boundary = Boundary(x_range, y_range)
map_dir = "test_data/shrink-road-maps/"
map_g = Fileio.load_map(map_dir)
print len(map_g.edges)
lines = []
for edge in map_g.edges.values():
# in_node = StaticMap.latlon2xy_centered(metainfo, edge.in_node.lat, edge.in_node.lon)
# out_node = StaticMap.latlon2xy_centered(metainfo, edge.out_node.lat, edge.out_node.lon)
#
# offset = glob.PIC_WIDTH / 2.0
#
# in_node = [in_node['X'] + offset, in_node['Y']+offset]
# out_node = [out_node['X'] + offset, out_node['Y']+offset]
in_node = [edge.in_node.lon, edge.in_node.lat]
out_node = [edge.out_node.lon, edge.out_node.lat]
lines.append([in_node, out_node])
print lines[0]
Plot.plot_graph_with_bgmap(lines, "chicago.png", boundary, "pymapplot.png")
# metainfo = pickle.load(open("chicago.png.pkl", "rb"))
# pprint.pprint(metainfo)