使用Python Basemap绘制一个窄地图区域

时间:2018-05-16 18:42:03

标签: python matplotlib-basemap

我想使用Basemap绘制地图(我不知道其他Python库)。我感兴趣的是以纬度42.9509和经度12.7015为中心的区域,半径为100公里。

我使用以下代码,但图像的分辨率非常低。

lat_0 = 42.9509
lon_0 = 12.7015

fig = plt.figure(figsize=(8, 8))
m = Basemap(projection='lcc', resolution='f',
            width=0.3E6, height=0.3E6,
            lat_0=lat_0, lon_0=lon_0)

m.etopo(scale=1, alpha=0.5)
plt.show()

enter image description here

我想要一张图片,在那里我可以看到更多细节来绘制分散在其上的点。

0 个答案:

没有答案