14:30-14:50: astroplan
tutorial, Q&A
14:50-end: Brainstorm:
- missing features
- hack day ideas
- contributions 😃
from __future__ import (absolute_import, division, print_function, | |
unicode_literals) | |
from shampoo.reconstruction import Hologram | |
import matplotlib.pyplot as plt | |
hologram_path = 'data/Hologram.tif' | |
propagation_distance = 0.0369 # m | |
# Full res: 2 s, Rebin 2x2: 0.5 s, 4x4: 0.125 |
from __future__ import (absolute_import, division, print_function, | |
unicode_literals) | |
import numpy as np | |
import sys | |
sys.path.insert(0, '/Users/bmorris/git/tmp/astropy') | |
import astropy | |
from astropy.time import Time | |
from astropy.coordinates import (SkyCoord, Longitude, Latitude, GCRS, |
# Licensed under a 3-clause BSD style license - see LICENSE.rst | |
""" | |
This module relies on the exoplanet database at exoplanets.org for information | |
about exoplanets and their host stars, by Wright, J.T., Fakhouri, O., Marcy, | |
G.W., et al. 2011, PASP, 123, 412 [1]_. | |
.. [1] http://arxiv.org/abs/1409.7709 | |
""" | |
from __future__ import (absolute_import, division, print_function, |