Better Programming

Advice for programmers.

Follow publication

Member-only story

Explore The Universe With These 5 Python Modules

Tate Galbraith
Better Programming
Published in
5 min readJan 5, 2023
Photo by Mohammad Rahmani on Unsplash

Python is a powerhouse language in the data science world. Crunching numbers, performing calculations and analyzing vast sets of data is this language’s specialty.

But it doesn’t have to all be boring operational data. Sometimes those numbers can be fun! Especially when they have to do with outer space and the planets.

In this article we’re going to take a trip around the world and then into space. We’ll look at some Python modules that let you discover a whole lot more than just a new business strategy.

1. PyEphem

The PyEphem module provides highly precise data on the planets and our solar system. This module leverages an extremely robust C library that allows you to pinpoint planets, perform interplanetary calculations and discover more data than you’ll ever know what to do with.

import ephem

jupiter = ephem.Jupiter()

jupiter.compute()

print(jupiter.ra)

The above snippet shows just how easy it is to get started with PyEphem. Here all we’re doing is pulling in the library and then computing the current location of Jupiter. We can access a multitude of data on the planet, including detailed location information.

To obtain the right ascension of the planet you can access .ra and should receive a precise metric indicating where the planet is in the sky. Keep in mind to properly calculate this you’ll also need the .dec metric as well.

Check out the official PyEphem website for updated documentation and other info.

2. solarsystem

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Tate Galbraith
Tate Galbraith

Written by Tate Galbraith

Software Engineer @mixhalo & die-hard Rubyist. Amateur Radio operator with a love for old technology. Tweet at me: https://twitter.com/@Tate_Galbraith

Responses (2)

Write a response