Multi-Target Plotting#

Just like query(), plot() can process data for multiple targets simultaneously. The following will perform a Pan-STARRS image query for four targets, before plotting and combining the returned data into a grid:

from ATK import query

targets = [2552928187080872832, 587316166180416640, 6050296829033196032, 4328198145165324800]
images = query("image", targets=targets, survey="panstarrs", size=120, band="g", path="multiple_images.fits.gz")
images.open()
Bokeh Figure


Plotting Arguments#

Plotting arguments are applied to all plots in the grid:

images.open(cmap="grey")
Bokeh Figure





Download this Tutorial

Total running time of the script: (0 minutes 3.156 seconds)

Gallery generated by Sphinx-Gallery