因此,我想使用3d
绘制matplotlib basemap
地图。但是会弹出错误消息。
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
from mpl_toolkits.basemap import Basemap
from matplotlib.collections import PolyCollection
import numpy as np
map = Basemap(llcrnrlon=-20,llcrnrlat=0,urcrnrlon=15,urcrnrlat=50,)
fig = plt.figure()
ax = Axes3D(fig)
#ax.set_axis_off()
ax.azim = 270
ax.dist = 7
polys = []
for polygon in map.landpolygons:
polys.append(polygon.get_coords())
lc=PolyCollection(polys,edgecolor='black',facecolor='#DDDDDD',closed=False)
ax.add_collection3d(lc)
ax.add_collection3d(map.drawcoastlines(linewidth=0.25))
ax.add_collection3d(map.drawcountries(linewidth=0.35))
lons = np.array([-13.7, -10.8, -13.2, -96.8, -7.99, 7.5, -17.3, -3.7])
lats = np.array([9.6, 6.3, 8.5, 32.7, 12.5, 8.9, 14.7, 40.39])
cases = np.array([1971, 7069, 6073, 4, 6, 20, 1, 1])
deaths = np.array([1192, 2964, 1250, 1, 5, 8, 0, 0])
places = np.array(['Guinea', 'Liberia', 'Sierra Leone','United States','Mali','Nigeria', 'Senegal', 'Spain'])
x, y = map(lons, lats)
ax.bar3d(x, y, np.zeros(len(x)), 2, 2, deaths, color= 'r', alpha=0.8)
plt.show()
我在第21行上收到了一条错误消息{即ax.add_collection3d(map.drawcoastlines(linewidth=0.25))
},它说:-
'It is not currently possible to manually set the aspect '
NotImplementedError: It is not currently possible to manually set the aspect on 3D axes'
答案 0 :(得分:3)
我找到了这个问题,因为我有确切的问题。
后来我偶然发现一些documentation揭示了解决方法-如果未实现方面的设置,那么不要通过将fix_aspect设置为false来设置它:
map = Basemap(fix_aspect=False)
编辑:
我想我应该在以前的回答中添加一些内容,以使其更容易理解该做什么。
NotImplementedError
是matplotlib团队故意添加的,如here所示。错误的意思是我们正在尝试固定绘图的纵横比,但这在3d绘图中没有实现。
在将mpl_toolkits.basemap()
设置为default的情况下,将fix_aspect=True
与3d图一起使用会发生此错误。
因此,要取消使用NotImplementedError
,可以在调用fix_aspect=False
时考虑添加mpl_toolkits.basemap()
。例如:
map = Basemap(llcrnrlon=-20,llcrnrlat=0,urcrnrlon=15,urcrnrlat=50,fix_aspect=False)