使用 add_collection3d 绘制 Poly3DCollection
Plotting Poly3DCollection using add_collection3d
我有相同大小的树数组,表示 space 中点的球坐标。我想绘制它们在笛卡尔坐标系中的变换。我正在尝试生成一个表面,由于我的数组的尺寸,我需要使用 add_collection3d
方法而不是 plot_surface
方法。原始数组在球坐标中具有不同的长度,并且转换为笛卡尔坐标是非线性的。
下面是一个简化的例子:
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.colors import LightSource
from mpl_toolkits.mplot3d.art3d import Poly3DCollection
from mpl_toolkits.mplot3d import Axes3D
phi_rad = np.linspace(0,360, 10)/180.0*np.pi
theta_rad = np.linspace(0,360, 10)/180.0*np.pi # cos(theta)
counts_str = np.linspace(0, 100, 10) # counts
# convertion to cartesian coordinates 1D arrays
x = counts_str * np.sin(theta_rad) * np.cos(phi_rad)
y = counts_str * np.sin(theta_rad) * np.sin(phi_rad)
z_str = counts_str * np.cos(theta_rad)
verts = [list(zip(x, y, z_str))]
fig = plt.figure()
ax = Axes3D(fig)
ax.add_collection3d(Poly3DCollection(verts, cmap="hot", alpha=0.9))
ls = LightSource(azdeg=225.0, altdeg=45.0)
ax.set_xlim3d(x.min(), x.max())
ax.set_ylim3d(y.min(), y.max())
ax.set_zlim3d(z_str.min(), z_str.max())
plt.show()
我想应用 cmap
和 LightSource
(不影响情节),以及 antialiased
因为在我的真实数据中 z 是一个数组有 20000 个元素。
期待听到您的集体智慧!
解决方案:重新整形所有三个向量并使用曲面图!
我有相同大小的树数组,表示 space 中点的球坐标。我想绘制它们在笛卡尔坐标系中的变换。我正在尝试生成一个表面,由于我的数组的尺寸,我需要使用 add_collection3d
方法而不是 plot_surface
方法。原始数组在球坐标中具有不同的长度,并且转换为笛卡尔坐标是非线性的。
下面是一个简化的例子:
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.colors import LightSource
from mpl_toolkits.mplot3d.art3d import Poly3DCollection
from mpl_toolkits.mplot3d import Axes3D
phi_rad = np.linspace(0,360, 10)/180.0*np.pi
theta_rad = np.linspace(0,360, 10)/180.0*np.pi # cos(theta)
counts_str = np.linspace(0, 100, 10) # counts
# convertion to cartesian coordinates 1D arrays
x = counts_str * np.sin(theta_rad) * np.cos(phi_rad)
y = counts_str * np.sin(theta_rad) * np.sin(phi_rad)
z_str = counts_str * np.cos(theta_rad)
verts = [list(zip(x, y, z_str))]
fig = plt.figure()
ax = Axes3D(fig)
ax.add_collection3d(Poly3DCollection(verts, cmap="hot", alpha=0.9))
ls = LightSource(azdeg=225.0, altdeg=45.0)
ax.set_xlim3d(x.min(), x.max())
ax.set_ylim3d(y.min(), y.max())
ax.set_zlim3d(z_str.min(), z_str.max())
plt.show()
我想应用 cmap
和 LightSource
(不影响情节),以及 antialiased
因为在我的真实数据中 z 是一个数组有 20000 个元素。
期待听到您的集体智慧!
解决方案:重新整形所有三个向量并使用曲面图!