Explore mnemonics in the DMS Engineering Database


This page allows interactive exploration of mnemonics stored in the Engineering Database (EDB) powered by MAST. Users may search for mnemonics and plot a particular mnemonic over a given time period. For more information about the EDB, see the MAST documentation.


Search for an EDB mnemonic

Submit a mnemonic identifier:
Description and details of menemonic from EDB:
    {% for key, value in edb_components['mnemonic_name_search_result'].items() %}
{% endfor %}
{{ 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'] %} {% if edb_components['mnemonic_query_status'] != 'SUCCESS' %}

{{ edb_components['mnemonic_query_status'] }}

{% else %} Query returned {{ edb_components['mnemonic_query_result'].data|length }} records: Download data
{% if edb_components['mnemonic_table_result'] %} {% autoescape off %} {{ edb_components['mnemonic_table_result'] }} {% endautoescape %} {% else %} {{ edb_components['mnemonic_query_result_plot'][1] | safe}} {{ edb_components['mnemonic_query_result_plot'][0] | safe }} {% endif %} {% endif%} {% 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_form'].errors %} {% for field in edb_components['mnemonic_exploration_form'] %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %} {% endfor %} {% endif %} {{ csrf_input }} {% for field in edb_components['mnemonic_exploration_form'] %}
{{ field }} {% if field.help_text %}

{{ field.help_text|safe }}

{% endif %}
{% endfor %}
{% 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 }} mnemonics matching input parameters out of {{ edb_components['mnemonic_exploration_result'].meta['paging']['rows']}} mnemonics total. Download table


{% autoescape off %} {{ edb_components['mnemonic_exploration_result'].html_file_content }} {% endautoescape %}
{% endif %} {% endif %}