Datalink also lets you declare processing services. SODA is a special set of parameters applicable to astronomical images (CIRCLE, POLYGON, TIME, BAND,… ).
Save a lot of time by only downloading cutouts of the object you’re interested in:
roi = SkyCoord.from_name('Mira') for rec in svc.run_sync( "SELECT access_url, access_format FROM ivoa.obscore" " WHERE obs_collection='HDAP'" "AND 1=CONTAINS(CIRCLE('ICRS', {}, {}, 0.05)," "s_region)".format(roi.ra.deg, roi.dec.deg)): processed = rec.processed( circle=(roi.ra.deg, roi.dec.deg, 0.05))
(1)
Warning: Doesn’t work with pyVO as of Feb 2018
CALIFA is a collection of spectral cubes (i.e., an array of small-band images) of galaxies; there is a datalink-enabled TAP table (califadr3.cubes) listing the cubes on the TAP service http://dc.g-vo.org/tap.
Use TOPCAT to inspect the tables belonging to califadr3; in particular note the objects table that you can join with cubes via the califaid column. Now write a program that gets images of Sd galaxies in their Hα light.
Hints: