exoplanet-atlas

Tools for working with transiting exoplanet populations.


License
MIT
Install
pip install exoplanet-atlas==0.2.4

Documentation

exoplanet-atlas

Tools for compiling and plotting populations of transiting exoplanets. This package still a bit of a work in progress, but can be generally useful for downloading and working with exoplanet populations. For draft documentation explaing how to use exoatlas, please read the documentation.

Installation

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 exoplanet-atlas

Or, 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/exoplanet-atlas

Or, 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/exoplanet-atlas.git
cd exoplanet-atlas
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.

Usage

Here's a quick preview:

# import some population definitions and plotting tool
from exoatlas import *

# create a dictionary of populations
exo = TransitingExoplanets()
solar = SolarSystem()
pops = {'solar':solar,
        'exo':exo}

# use a default visualization to summarize these populations
physical_summary(pops)

Authors

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.