from IPython.display import Image
from IPython.core.display import HTML
Image(url='http://remote2.ece.illinois.edu/~bhardin2/MIGHTI/full_orbit_20160117.png')
Quantifying terminator effect
First Orbit Green | Second Orbit Green | First Orbit Red | Second Orbit Red | |
---|---|---|---|---|
Day-to-Night Terminator Duration | 29.0$^\circ$ | 24.6$^\circ$ | 16.8$^\circ$ | 12.6$^\circ$ |
Night-to-Day Terminator Duration | 27.8$^\circ$ | 27.8$^\circ$ | 23.7$^\circ$ | 32.5$^\circ$ |
Percentage of orbit | 15.8% | 14.6% | 11.2% | 12.5% |
from IPython.display import Image
from IPython.core.display import HTML
Image(url='http://remote2.ece.illinois.edu/~bhardin2/MIGHTI/full_orbit_20160119.png')
from IPython.display import Image
from IPython.core.display import HTML
Image(url='http://remote2.ece.illinois.edu/~bhardin2/MIGHTI/full_orbit_20160118.png')
from IPython.display import Image
from IPython.core.display import HTML
Image(url='http://remote2.ece.illinois.edu/~bhardin2/MIGHTI/full_orbit_20160120.png')
import subprocess
import shutil
nb_name = 'MIGHTI_Terminator_20160126.ipynb' # There's probably a way to get this programmatically
cmd = ['jupyter', 'nbconvert', '--to=slides', nb_name, \
'--reveal-prefix', '"http://cdn.bootcss.com/reveal.js/3.1.0"',\
'--template','output_toggle']
# The --template command points to a custom template which opens and closes the input code cells with a click
subprocess.call(cmd)
html_name = '%s.slides.html' % (nb_name.split('.')[0])
shutil.copy(html_name, '/home/bhardin2/public_html/slideshows/')