Python实现绘制3D地球旋转效果

作者:微小冷 时间:2021-04-17 22:25:37 

画一个地球

想画一个转动的地球,那么首先要有一个球,或者说要有一个球面,用参数方程可以表示为

x=rcosϕcosθ

y=rcosϕsinθ

z=rsinϕ

然后要有一个地球,或者说要有一个地图,用来作为贴图,映射到球面上。

import numpy as np
import matplotlib.pyplot as plt
path = "earth1.jpg"
img = plt.imread(path)
h, w, c = img.shape
ys, xs = np.indices([h, w])
th = xs/w*np.pi*2
phi = np.pi/2 - ys/h*np.pi

x = np.cos(phi)*np.cos(th)
y = np.cos(phi)*np.sin(th)
z = np.sin(phi)

cs = [tuple(c/255) for c in img.reshape(-1,3)]
ax = plt.subplot(projection='3d')
ax.scatter(x, y, z, marker='.', c=cs)
plt.axis('off')
plt.show()

其中scatter画的是散点图,c=cs为颜色映射参数,所以温馨提示,选取的地球图片不宜过大,否则点太多会让电脑爆掉。

最后得到的效果如下

Python实现绘制3D地球旋转效果

让地球转起来

三维空间中的旋转矩阵如下表所示,具体讲解可参考这两篇博客:旋转坐标轴💎旋转正方体

Python实现绘制3D地球旋转效果

有了旋转矩阵,接下来就是让地球转起来。

import numpy as np
import matplotlib.pyplot as plt
from matplotlib import animation

cos = lambda th : np.cos(np.deg2rad(th))
sin = lambda th : np.sin(np.deg2rad(th))

Rz = lambda th : np.array([
   [cos(th) , -sin(th), 0],
   [sin(th), cos(th), 0],
   [0       , 0,       1]])

xyz = np.array([x,y,z]).reshape(3,-1)

fig = plt.figure(figsize=(5,5))
ax = fig.add_subplot(projection='3d')
ax.grid()

lines = ax.scatter(x, y, z, marker='.', c=cs)

def animate(n):
   # 按照xyz顺序旋转
   axis = [2,1,0]
   shape = xyz.shape
   lines._offsets3d = Rz(n)@xyz
   return lines,

ani = animation.FuncAnimation(fig, animate,
   range(0, 360, 2), interval=25, blit=True)

#plt.show()
ani.save("zyx.gif")

效果如下

Python实现绘制3D地球旋转效果

来源:https://tinycool.blog.csdn.net/article/details/128914226

标签:Python,地球,旋转
0
投稿

猜你喜欢

  • 深入研究ASP中的Session

    2007-09-13 12:37:00
  • Python实现模拟登录及表单提交的方法

    2021-05-28 19:23:12
  • 图文教程mssqlserver数据库导出到另外一个数据库的方法

    2024-01-24 20:33:54
  • python 通过SSHTunnelForwarder隧道连接redis的方法

    2021-03-08 12:58:41
  • python3+openCV 获取图片中文本区域的最小外接矩形实例

    2022-03-16 00:57:11
  • Python爬取豆瓣视频信息代码实例

    2021-10-28 06:41:46
  • XML教程:什么是XML及XML和HTML的区别

    2008-09-05 17:21:00
  • MySQL出现1067错误如何解决?

    2008-09-03 12:25:00
  • BeautifulSoup中find和find_all的使用详解

    2023-11-08 21:00:22
  • Python FTP文件定时自动下载实现过程解析

    2023-04-30 19:08:51
  • 使用python如何提取JSON数据指定内容

    2022-08-06 23:48:41
  • Python使用itchat 功能分析微信好友性别和位置

    2023-09-24 15:57:12
  • MySQL千万级数据表的优化实战记录

    2024-01-23 08:53:12
  • 一篇文章彻底弄懂Python中的if __name__ == __main__

    2023-04-27 08:42:14
  • Python实现随机生成任意数量车牌号

    2022-08-04 04:53:17
  • mysql常用备份命令和shell备份脚本分享

    2024-01-13 14:37:35
  • 如何利用Redis作为Mybatis的二级缓存

    2023-07-05 10:51:11
  • MySQL中order by的执行过程

    2024-01-15 00:29:16
  • 通过实例解析python subprocess模块原理及用法

    2022-03-26 06:21:51
  • Pandas实现在线文件和剪贴板数据读取详解

    2021-06-02 16:49:55
  • asp之家 网络编程 m.aspxhome.com