42 lines
2.0 KiB
HTML
42 lines
2.0 KiB
HTML
|
|
{% extends "base.html" %}
|
|
|
|
{% block header %}{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
{% if alerce %}
|
|
<h4>Specific {{ alerce.oid }} fields:</h4>
|
|
|
|
<p><a href="{{ alerce.get_alerce_url }}">ALeRCE</a> <!--a href="{{ alerce.get_tns_url }}">Transient Name Server</a--></p>
|
|
|
|
<p><strong>RA/Dec:</strong> {{ alerce.ra|floatformat:3 }}, {{ alerce.dec|floatformat:3 }}, <strong>nobs:</strong> {{ alerce.nobs }}</p>
|
|
<p>Early Classifier: <strong>{{ alerce.get_early_class }}</strong> ({{ alerce.classearly }}) with probability of {{ alerce.pclassearly|floatformat:2 }}.</p>
|
|
|
|
{% if alerce.classrf %}<p>Late Classifier: <strong>{{ alerce.get_late_class }}</strong> ({{ alerce.classrf }}) with probability of {{ alerce.pclassrf|floatformat:2 }}.</p>{% endif %}
|
|
|
|
<p>Detected between {{ alerce.firstdate|date:"d.m.Y H:i" }} - {{ alerce.lastdate|date:"d.m.Y H:i" }} (<strong>MJD:</strong> {{ alerce.firstmjd|floatformat:4 }} - {{ alerce.lastmjd|floatformat:4 }}).</p>
|
|
|
|
<p>
|
|
|
|
<h4>Magnitute</h4>
|
|
mean_magap_g = {{ alerce.mean_magap_g|floatformat:2 }} {% if alerce.sigma_magap_g %}+/- {{ alerce.sigma_magap_g|floatformat:2 }}{% endif %}<br>
|
|
mean_magap_r = {{ alerce.mean_magap_r|floatformat:2 }} {% if alerce.sigma_magap_r %}+/- {{ alerce.sigma_magap_r|floatformat:2 }}{% endif %}<br>
|
|
|
|
mean_magpsf_g = {{ alerce.mean_magpsf_g|floatformat:2 }} {% if alerce.sigma_magpsf_g %}+/- {{ alerce.sigma_magpsf_g|floatformat:2 }}{% endif %}<br>
|
|
mean_magpsf_r = {{ alerce.mean_magpsf_r|floatformat:2 }} {% if alerce.sigma_magpsf_r %}+/- {{ alerce.sigma_magpsf_r|floatformat:2 }}{% endif %}<br>
|
|
</p>
|
|
|
|
|
|
{% if alerce.survey %}
|
|
<h4>Close to SRG survey</h4>
|
|
{% for survey in alerce.survey.all %}
|
|
<a href="{{ survey.get_absolute_url }}">{{ survey.experiment }}</a> {{ survey.start|date:"d.m.y H:i" }} - {{ survey.stop|date:"d.m.y H:i" }}<br>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<p>healpix_source: {{ alerce.healpix }}, healpix_plate: {{ alerce.healpix_plate }}, <strong>loaded:</strong> {{ alerce.created|date:"d.m.Y H:i" }}</p>
|
|
|
|
{% endif %}
|
|
{% endblock %}
|