在Python中用3D球体绘制圆柱形地图数据

时间:2013-06-28 13:02:59

标签: python 3d matplotlib plot

假设我有一个带有行星圆柱图的图像,比如其中一个:

http://www.johnstonsarchive.net/spaceart/cylmaps.html

我想将它绘制在3D球体上以恢复原始的行星形象。

有没有办法使用像matplotlib,mayavi,basemap或类似的Python包来做到这一点?

2 个答案:

答案 0 :(得分:13)

更新:这是使用Cartopy的新版本,basemap is EOL。以下是原始答案。

import matplotlib.pyplot as plt
import cartopy.crs as ccrs

img = plt.imread("/tmp/venuscyl4.tif")

plt.figure(figsize=(3, 3))

ax = plt.axes(projection=ccrs.Orthographic(-10, 45))
ax.gridlines(color='black', linestyle='dotted')
ax.imshow(img, origin="upper", extent=(-180, 180, -90, 90),
          transform=ccrs.PlateCarree())  # Important

plt.show()

Venus map using Cartopy


感谢Raphael Roth的回答,我终于找到了我要找的东西:底图方法warpimage

这是一个非常小的例子。使用此cylindrical map of Venus,并基于simple example of the cookbook

from mpl_toolkits.basemap import Basemap
import matplotlib.pyplot as plt
import numpy as np
# set up orthographic map projection with
# perspective of satellite looking down at 50N, 100W.
# use low resolution coastlines.
# don't plot features that are smaller than 1000 square km.
bmap = Basemap(projection='ortho', lat_0 = 50, lon_0 = -100,
              resolution = 'l', area_thresh = 1000.)
# plot surface
bmap.warpimage(image='venuscyl4.jpg')
# draw the edge of the map projection region (the projection limb)
bmap.drawmapboundary()
# draw lat/lon grid lines every 30 degrees.
bmap.drawmeridians(np.arange(0, 360, 30))
bmap.drawparallels(np.arange(-90, 90, 30))
plt.show()

产生以下输出:

Venus sphere map

答案 1 :(得分:3)

底图工具包非常适合此任务。

问题似乎是你没有真正拥有数据,例如lat,lon,每个像素的值。问题还在于,对于给定的图像,您通常不知道用于创建图像的投影,因此您无法进行反向转换以获取原始数据。

如果您只想绘制地球图像,请使用basemap工具包中的bluemarble()函数:

http://wiki.scipy.org/Cookbook/Matplotlib/Maps