+ standardID: ivo://ivoa.net/std/TAP +
+ ++ tables: + caom2.Observation + JOIN + caom2.Plane +
+ +parameters:
+
+ SELECT p.publisherID, o.telescope_name, o.instrument_name,
+ p.calibrationLevel, p.dataProductType,
+ p.position_bounds, p.energy_bounds, p.time_bounds, p.polarization_states
+ FROM caom2.Observation AS o JOIN caom2.Plane AS p ON o.obsID = p.obsID
+ WHERE o.intent = 'science' AND INTERSECTS(p.position_bounds, CIRCLE('ICRS', 180.0, 0.0, 0.5)) = 1
+
+ + The Plane.publisherID column is the identifier that is needed to call the CAOM DataLink service and initiate + data access; when this column is selected, the service will include a service descriptor + with the necessary information. +
++ standardID: ivo://ivoa.net/std/TAP +
+ + ++ tables: + caom2.Observation + JOIN + caom2.Plane + JOIN + caom2.Artifact +
+ +parameters:
+
+ SELECT p.publisherID, o.telescope_name, o.instrument_name,
+ p.calibrationLevel, p.dataProductType,
+ p.position_bounds, p.energy_bounds, p.time_bounds, p.polarization_states,
+ a.uri
+ FROM caom2.Observation AS o
+ JOIN caom2.Plane AS p ON o.obsID = p.obsID
+ JOIN caom2.Artifact AS a ON p.planeID = a.planeID
+ WHERE o.intent = 'science'
+ AND a.productType IN ('science', 'this')
+ AND INTERSECTS(p.position_bounds, CIRCLE('ICRS', 180.0, 0.0, 0.5)) = 1
+
+ + The Plane.publisherID column is the identifier that is needed to call the CAOM DataLink service + and initiate data access; when this column is selected, the service will include a + service descriptor with the necessary information. +
++ Coming soon: The Artifact.uri column is the identifier that is needed to directly access + the file in the CADC Archive Storage system; when this column is selected, the service will + include a service descriptor with the necessary information. +
+