An Example SunPy Presentation

Conference / Location / Date

A. Speaker

Example University

B. Presenter

NASA

The SunPy Project

The sunpy Package

The package includes…

  • Data search and retrieval
  • Data structures for timeseries and image data
  • Coordinate frames and conversions
  • and much more!

Another slide with a plot inline

You can also include code

The code below shows how to create a coordinate in the same frame as the map shown before.

import astropy.coordinates
import astropy.units as u
my_coord = astropy.coordinates.SkyCoord(Tx=300*u.arcsec, Ty=500*u.arcsec, frame=m.coordinate_frame)
print(my_coord)
<SkyCoord (Helioprojective: obstime=2011-06-07T06:33:02.770, rsun=696000.0 km, observer=<HeliographicStonyhurst Coordinate (obstime=2011-06-07T06:33:02.770, rsun=696000.0 km): (lon, lat, radius) in (deg, deg, m)
    (-0.00406308, 0.04787238, 1.51846026e+11)>): (Tx, Ty) in arcsec
    (300., 500.)>