.. Review the README on instructions to contribute. .. Review the style guide to keep a consistent approach to the documentation. .. Static objects, such as figures, should be stored in the _static directory. Review the _static/README on instructions to contribute. .. Do not remove the comments that describe each section. They are included to provide guidance to contributors. .. Do not remove other content provided in the templates, such as a section. Instead, comment out the content and include comments to explain the situation. For example: - If a section within the template is not needed, comment out the section title and label reference. Do not delete the expected section title, reference or related comments provided from the template. - If a file cannot include a title (surrounded by ampersands (#)), comment out the title from the template and include a comment explaining why this is implemented (in addition to applying the ``title`` directive). .. This is the label that can be used for cross referencing this file. .. Recommended title label format is "Directory Name"-"Title Name" -- Spaces should be replaced by hyphens. .. _Data-Access-Analysis-Tools-API-Intro: .. Each section should include a label for cross referencing to a given area. .. Recommended format for all labels is "Title Name"-"Section Name" -- Spaces should be replaced by hyphens. .. To reference a label that isn't associated with an reST object such as a title or figure, you must include the link and explicit title using the syntax :ref:`link text `. .. A warning will alert you of identical labels during the linkcheck process. ################################## Introduction to the RSP API Aspect ################################## .. This section should provide a brief, top-level description of the page. On the the main landing page at `data.lsst.cloud `_ there is an "APIs" panel with more information about the API Aspect. .. Important:: The API Aspect has a lot of new features for DP0.2, which will be added to this page after the DP0.2 release (during July 2022). Check back soon for new information! The API's services for DP0.2 will include `TAP `_, `ObsTAP `_, `SODA `_ (image cutouts and mosaics), and `HiPS `_. Longer term, Rubin Observatory will support `SCS `_ for simple catalog searches, `SIAv2 `_ for image searches, and `VOSpace `_ (in addition to `WebDAV `_) for access to user files. .. _Data-Access-Analysis-Tools-TAP-TOPCAT: Use of TOPCAT with the RSP TAP service ====================================== One popular and useful TAP utility is `TOPCAT `_. To access DP0.2 from the TAP utility, one needs to have an RSP access token. How to generate and use an RSP access token is described by the `Rubin Science Platform APIs `_ webpage and by the `Science Platform Tokens `_ webpage. A step-by-step API tutorial like the one available in `this Rubin Community Forum post `_ will be added here soon. In the meantime these two slides from a talk by Leanne Guy, `Rubin Science Platform – what to expect `_, illustrates what users can expect in terms of the RSP's API Aspect. .. figure:: /_static/API_LGuy_slide11.png :name: API_LGuy_slide11 :alt: This image is a slide from a presentation about the Rubin Science Platform. It shows the Rubin logo at upper left and is titled Remote Query of the LSST Archive Tools. The footer contains text that says PST Science Collaborations Talk 13 April 2022. In the center of the slide are three screenshots of the TOPCAT interface. The first shows that the Table Access Protocol or TAP Query interface can be selected from the Virtual Observatory or VO menu. The second shows that Rubin’s DP0.2 can be selected from TOPCAT’s TAP Query interface. The third demonstrates how users enter their credentials in order to access the DP0.2 data. .. figure:: /_static/API_LGuy_slide12.png :name: API_LGuy_slide12 This slide demonstrates how TOPCAT can be used to remotely query the LSST archive and download data sets for local analysis. .. _Data-Access-Analysis-Tools-TAP-NB: Use of TAP via the Notebook Aspect ================================== Use of the TAP service to query catalogs via the Portal is described in :doc:`/data-access-analysis-tools/portal-intro`. In the Notebook Aspect, a TAP service is instantiated in a python notebook and used to execute an `ADQL query `_ and return a result set. A set of utilities are provided to get a TAP service instance. .. code-block:: python from lsst.rsp import get_tap_service, retrieve_query service = get_tap_service() query = "SELECT TOP 100 * FROM dp02_dc2_catalogs.Object" results = service.search(query) results.to_table().show_in_notebook() Several of the DP0 :ref:`DP0-2-Tutorials-Notebooks` demonstrate how to use the TAP service programmatically from a python notebook.