当前位置: 首页 > 工具软件 > The Open Bay > 使用案例 >

Geospatial Data Science (8): OpenStreetMap and OSMnx

壤驷康裕
2023-12-01

Geospatial Data Science (8): OpenStreetMap and OSMnx

1.OSMnx overview: querying, simplifying, visualizing, saving

import geopandas as gpd
import osmnx as ox
import numpy as np
import networkx as nx
import pandas as pd

%matplotlib inline
ox.__version__
'1.2.2'

您可以使用 ox.config() 来配置 OSMnx。 请参阅

 类似资料: