本文整理匯總了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)