是否可以在 Folium 中绘制路径?
Is it possible to draw paths in Folium?
我阅读了很多与此相关的文档,但找不到我要找的东西。
我想绘制两点之间的步行路径。可能吗?如果没有,python 中是否有任何其他图书馆用于此目的?
当然可以。使用 PolyLine
:
import folium
m = folium.Map(location=[40.720, -73.993],
zoom_start=15)
loc = [(40.720, -73.993),
(40.721, -73.996)]
folium.PolyLine(loc,
color='red',
weight=15,
opacity=0.8).add_to(m)
m
你得到:
编辑 1
为了在两点之间绘制一条步行路径,您可以使用OSMnx
and networkx
:
的组合
import osmnx as ox
import networkx as nx
ox.config(log_console=True,
use_cache=True)
G_walk = ox.graph_from_place('Manhattan Island, New York City, New York, USA',
network_type='walk')
orig_node = ox.get_nearest_node(G_walk,
(40.748441, -73.985664))
dest_node = ox.get_nearest_node(G_walk,
(40.748441, -73.4))
route = nx.shortest_path(G_walk, orig_node, dest_node, weight='length')
fig, ax = ox.plot_graph_route(G_walk,
route,
node_size=0,
save=True,
file_format='svg',
filename='test')
你得到:
编辑 2
对于 folium 类型的地图,您可以使用 plot_route_folium
:
import osmnx as ox
import networkx as nx
ox.config(log_console=True, use_cache=True)
G_walk = ox.graph_from_place('Manhattan Island, New York City, New York, USA',
network_type='walk')
orig_node = ox.get_nearest_node(G_walk,
(40.748441, -73.985664))
dest_node = ox.get_nearest_node(G_walk,
(40.748441, -73.4))
route = nx.shortest_path(G_walk,
orig_node,
dest_node,
weight='length')
route_map = ox.plot_route_folium(G_walk, route)
route_map.save('route.html')
你会得到一个有用的 html 文件:
如果您使用的是 Openstreetmap 和 folium,那么您可以按照此操作。虽然这是用于驾驶带有方向和时间的汽车路线。
你可以关注这个 link https://pastebin.ubuntu.com/p/7TtnBxWPNr/
我阅读了很多与此相关的文档,但找不到我要找的东西。
我想绘制两点之间的步行路径。可能吗?如果没有,python 中是否有任何其他图书馆用于此目的?
当然可以。使用 PolyLine
:
import folium
m = folium.Map(location=[40.720, -73.993],
zoom_start=15)
loc = [(40.720, -73.993),
(40.721, -73.996)]
folium.PolyLine(loc,
color='red',
weight=15,
opacity=0.8).add_to(m)
m
你得到:
编辑 1
为了在两点之间绘制一条步行路径,您可以使用OSMnx
and networkx
:
import osmnx as ox
import networkx as nx
ox.config(log_console=True,
use_cache=True)
G_walk = ox.graph_from_place('Manhattan Island, New York City, New York, USA',
network_type='walk')
orig_node = ox.get_nearest_node(G_walk,
(40.748441, -73.985664))
dest_node = ox.get_nearest_node(G_walk,
(40.748441, -73.4))
route = nx.shortest_path(G_walk, orig_node, dest_node, weight='length')
fig, ax = ox.plot_graph_route(G_walk,
route,
node_size=0,
save=True,
file_format='svg',
filename='test')
你得到:
编辑 2
对于 folium 类型的地图,您可以使用 plot_route_folium
:
import osmnx as ox
import networkx as nx
ox.config(log_console=True, use_cache=True)
G_walk = ox.graph_from_place('Manhattan Island, New York City, New York, USA',
network_type='walk')
orig_node = ox.get_nearest_node(G_walk,
(40.748441, -73.985664))
dest_node = ox.get_nearest_node(G_walk,
(40.748441, -73.4))
route = nx.shortest_path(G_walk,
orig_node,
dest_node,
weight='length')
route_map = ox.plot_route_folium(G_walk, route)
route_map.save('route.html')
你会得到一个有用的 html 文件:
如果您使用的是 Openstreetmap 和 folium,那么您可以按照此操作。虽然这是用于驾驶带有方向和时间的汽车路线。 你可以关注这个 link https://pastebin.ubuntu.com/p/7TtnBxWPNr/