Articles in this category Scientific problem Task: Do a cone search on the Pleiades and retrieve pmra and pmdec for all stars from Gaia archive: SELECT pmra, pmdec FROM gaiadr3.gaia_source_lite WHERE 1 = CONTAINS(POINT(56.75, 24.12),CIRCLE(ra,de... Paralleling the issue We perform task parallelization at the level of the query to the Gaia archive. In our example, a single database query SELECT pmra, pmdec FROM gaiadr3.gaia_source_lite WHERE 1 = CONTAINS(POINT(56.75, ... Code example in Python for Gaia@home The second, more practical example is the script that uses data from Gaia Archive query results, searching for objects at Pleiades Cluster coordinates. Then the script filters the received data and co...