cities = ox.geocode_to_gdf(['MunicÃpio de Lisboa', 'MunicÃpio de Oeiras', 'MunicÃpio da Amadora', 'MunicÃpio de Loures', 'MunicÃpio de Odivelas'])
whole_polygon = cities.unary_union #unary union of both geometries
G = ox.graph_from_polygon(whole_polygon, network_type='drive', simplify=True)
G_nx = nx.relabel.convert_node_labels_to_integers(G)
nodes, edges = ox.graph_to_gdfs(G_nx, nodes=True, edges = True)
我试图确定
name
NaN
但由于某些原因,它无法检测到:
for i in range(len(edges)):
if edges['name'].iloc[i] == float('nan'):
print('here')
float('NaN')
而不是代码中的内容。我查过了当
名称
价值是
南
这个变量实际上是一个浮动。“名称”列中有三种类型的值:
list
,
str
,
float
,其中浮点值仅在值为
南