我最近从Mapzen下载了旧金山的shapefile。 现在我能够显示街道,但我希望有一个真实的地图作为背景图像,这样就可以更容易地在旧金山的真实道路和Geopandas所示的道路之间建立联系。
以下是使用Geopandas显示街道的代码:
首先从Mapzen
打开Python笔记本并添加以下行:
#Useful starting lines
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
%load_ext autoreload
%autoreload 2
shapefile_dir = 'the path to your directory where you store the shapefile'
shapefile_name ='san-francisco_california_osm_roads_gen0.shp'
shapefile_roads = os.path.join(shapefile_dir, shapefile_name)