Notebook
gc = aplpy.FITSFigure('2MASS_k.fits')
gc.show_grayscale()
gc.show_colorscale()
gc.show_colorscale(cmap='gist_heat')
gc.show_rgb('2MASS_arcsinh_color.png')
gc.tick_labels.set_font(size='small')
gc.show_contour('mips_24micron.fits', colors='white')
gc.add_grid()
gc.remove_grid()
import numpy data = numpy.loadtxt('yso_wcs_only.txt') ra, dec = data[:, 0], data[:, 1] gc.show_markers(ra, dec, edgecolor='green', facecolor='none', marker='o', s=10, alpha=0.5)
gc.list_layers()
gc.show_markers(ra, dec, layer='marker_set_1', edgecolor='red', facecolor='none', marker='o', s=10, alpha=0.5)
gc.save('myfirstplot.png')