Explore mnemonics in the DMS Engineering Database
This page allows interactive exploration of mnemonics stored in the Engineering Database (EDB) powered by MAST. Its use requires access privileges to the EDB (see instructions page). Functionality is built on top of the astroquery.mast module. Example programmatic code for EDB queries is available in this Jupyter notebook.
Search for an EDB mnemonic
Submit a mnemonic identifier:
Description and details of menemonic from EDB:
{{ key }} : | {{ value }} |
Query for records of an EDB mnemonic
Submit a mnemonic identifier with a time range to view the corresponding EDB records:
{% if edb_components['mnemonic_query_result'] %}
Query returned {{ edb_components['mnemonic_query_result'].meta['paging']['rows'] }} records:
Download data
{{ edb_components['mnemonic_query_result_plot'][1] | safe}}
{{ edb_components['mnemonic_query_result_plot'][0] | safe }}
{% endif %}
Explore the EDB mnemonic inventory
Fill one or several of the following fields and a table of matching inventory elements will be returned. For the complete list, leave all fields blank. The search is case insensitive and fields are combined with simple AND logic.
{% if edb_components['mnemonic_exploration_result'] == 'empty' %}
Query returned zero matches. Please refine and repeat.
{% endif %}
{% if edb_components['mnemonic_exploration_result'] %}
{% if edb_components['mnemonic_exploration_result'] != 'empty' %}
Query returned {{ edb_components['mnemonic_exploration_result'].n_rows }} matching rows in the EDB inventory containing {{ edb_components['mnemonic_exploration_result'].meta['paging']['rows']}} mnemonics.
Download table
{% autoescape off %} {{ edb_components['mnemonic_exploration_result'].html_file_content }} {% endautoescape %}
{% endif %} {% endif %}