Hello,
Here’s my Orion Constellation project
%matplotlib notebook
from matplotlib import pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
# Orion
x = [-0.41, 0.57, 0.07, 0.00, -0.29, -0.32,-0.50,-0.23, -0.23]
y = [4.12, 7.71, 2.36, 9.10, 13.35, 8.13, 7.19, 13.25,13.43]
z = [2.06, 0.84, 1.56, 2.07, 2.36, 1.72, 0.66, 1.25,1.38]
#plot 2d constellation
fig = plt.figure(figsize=(7,7))
fig.patch.set_facecolor('blue')
fig.patch.set_alpha(0.05)
ax = fig.add_subplot(1,1,1)
plt.scatter(x, y, color='red')
plt.title("Orion Constellation, 2D")
plt.xlabel("x coordinates")
plt.ylabel('y coordinates')
plt.show()
#Plot 3d constellation
fig_3d = plt.figure(figsize=(7,7))
ax3d = fig_3d.add_subplot(1,1,1,projection="3d")
plt.scatter(x,y,z, color='red')
plt.title("Orion Constellation, 3D")
ax3d.set_xlabel("x coordinates")
ax3d.set_ylabel("y coordinates")
ax3d.set_zlabel("z coordinates")
ax3d.patch.set_facecolor('blue')
ax3d.patch.set_alpha(0.03)
ax3d.grid(False)
plt.show()