srg/Templates/heasarc/show_heasarc_chanmaster.html
2024-06-05 11:33:02 +03:00

31 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% block header %}{% endblock %}
{% block content %}
{% if heasarc %}
<h4>Specific {{ heasarc.description }} fields:</h4>
time = {{ heasarc.time }}<br />
obsid = {{ heasarc.obsid }} Observation Identifier<br />
status = {{ heasarc.status }} Status of Observation<br />
detector = {{ heasarc.detector }} # Detector<br />
grating = {{ heasarc.grating }} # Grating Setting<br />
exposure = {{ heasarc.exposure }} # Actual Exposure Time If Observed, Otherwise the Approved Exposure (s)<br />
obstype = {{ heasarc.obstype }} # Type of Observation (GO,GTO,CAL,TOO,DDT)<br />
pi = {{ heasarc.pi }} # PI of Observation<br />
cycle = {{ heasarc.cycle }} # AO Number (0=calibration phase)<br />
proposal = {{ heasarc.proposal }} # Proposal Number<br />
public_date = {{ heasarc.public_date }} # Public Date<br />
sequence_number = {{ heasarc.sequence_number }} # Sequence Number<br />
data_mode = {{ heasarc.data_mode }} # Operational Mode of the Detector<br />
category = {{ heasarc.category }} # Subject Category<br />
class_id = {{ heasarc.class_id }} # Browse Object Classification<br />
{% endif %}
{% endblock %}