Tools for compiling and plotting populations of transiting exoplanets. To learn how to use exoatlas, please read the documentation.
1 July 2025: We submitted a paper on exoatlas to the Journal of Open Source Software; a draft is available here.
If you want the most recent stable version, the simplest way is to install it from PyPI directly via pip from any UNIX prompt:
pip install exoatlasOr, if you want the very-most-up-to-date version, you can install directly from this repository via:
pip install git+https://github.com/zkbt/exoatlasOr, if you want to be able to modify the code yourself, please also feel free to fork/clone this repository onto your own computer and install directly from that editable package. For example, this might look like:
git clone https://github.com/zkbt/exoatlas.git
cd exoatlas
pip install -e .The pip install -e . command will link the installed version of the package to the directory of your local repository. Changes you make to the code in that directory should be reflected in the version Python sees when it tries to import exoatlas.
Here's a very quick preview:
# import some population definitions and plotting tool
from exoatlas import TransitingExoplanets, SolarSystem
from exoatlas.visualizations import PlanetGalleryWithEscape
# create a dictionary of populations
exo = TransitingExoplanets()
solar = SolarSystem()
# use a default visualization to summarize these populations
PlanetGalleryWithEscape().build([solar, exo])For a slightly less quick preview, which will hopefully entice you to keep reading through the rest of the documentation, please
This toolkit was made by Zach Berta-Thompson. It relies heavily on the incredible work done by the folks over at the NASA Exoplanet Archive, and their generously designed API.