Orion Constellation

Hello, this is my first on post on the forum, with the code of the orion visualization project. Its a simple code in jupyter notebook:

%matplotlib notebook from matplotlib import pyplot as plt import matplotlib.pyplot 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] fig= plt.figure() fig.add_subplot(1,1,1) matplotlib.pyplot.scatter(x,y) plt.xlabel('Orion x Coordinates') plt.ylabel('Orion y Coordinates') plt.show() fig_3d = plt.figure() fig_3d.add_subplot(1,1,1,projection="3d") constellation3d= matplotlib.pyplot.scatter(x,y,z , color = 'blue', marker = '*') plt.title('3D Visualization of the Orion Constellation') plt.show(constellation3d)



I like your profile picture!

1 Like