{% extends "base.html" %} {% load tags %} {% load static %} {% block title %} - {{ satellite.name }}{% endblock %} {% block css %} {% if showmap %} {% endif %} {% endblock %} {% block top-menu-left %} {{ satellite.name }} {% endblock %} {% block top-menu-right %} {% endblock %} {% block top %} {{ satellite.name }} {% endblock %} {% block content %}
Mission information
Name
{{ satellite.name }}
{% if satellite.names %}
Alternate Names
{{ satellite.names }}
{% endif %}
NORAD ID
{{ satellite.norad_cat_id }}
{% if satellite.website %}
Website
{{ satellite.website }}
{% endif %} {% if satellite.operator %}
Operator
{% if satellite.operator.website %} {{ satellite.operator.name }} - {{ satellite.operator.names }} {% else %} {{ satellite.operator.name }} - {{ satellite.operator.names }} {% endif %}
{% endif %} {% if satellite.countries %} {% if satellite.countries|length > 1 %}
Countries of Origin
{% else %}
Country of Origin
{% endif %}
{% for country in satellite.countries %}

{{ country.name }}

{% endfor %}
{% endif %}
Status
{% if satellite.status == 'alive' %} Operational {% elif satellite.status == 're-entered' %} Decayed {% elif satellite.status == 'dead' %} Malfunctioning {% else %} Unknown {% endif %}

{% if satellite.status == 'alive' %} Satellite is in orbit and operational {% elif satellite.status == 're-entered' %} Satellite has re-entered {% elif satellite.status == 'dead' %} Satellite appears to be malfunctioning {% else %} Status of the satellite is unknown {% endif %}

Image
{{ satellite.name }}
{% if satellite.launched or satellite.deployed or satellite.decayed %}
Mission timeline
{% if satellite.launched %}
Launch Date
{{ satellite.launched|date:"c" }}
{% endif %} {% if satellite.deployed %}
Deploy Date
{{ satellite.deployed|date:"c" }}
{% endif %} {% if satellite.decayed %}
Decay Date
{{ satellite.decayed|date:"c" }}
{% endif %}
{% endif %} {% if satellite.get_description %}
Description
{{ satellite.get_description|safe }}
{% endif %}
SatNOGS Links
Network Observations {% if satellite.dashboard_url %} Telemetry Dashboard {% endif %}
{% if showmap %}
{% endif %}
{% for transmitter in satellite.transmitters.all %}
{% include 'includes/cards/transmitter_card.html' with satellite=satellite transmitter=transmitter %}
{% empty %}
No Transmitters Found
No approved transmitters yet for this Satellite. Help us improve our database, you can find instructions at this wiki link
{% endfor %} {% if request.user.is_superuser and satellite.transmitter_suggestion_count %} {% for transmitter in transmitter_suggestions %}
{% include 'includes/cards/transmitter_card.html' with satellite=satellite transmitter=transmitter suggestion_card=True %}
{% endfor %} {% endif %}
Most Recent Observers
{% if recent_observers|length > 0 %} {% for obs in recent_observers %} {% endfor %}
Observer Latest Data
{{obs.observer}} {{obs.latest_payload|date:"Y-m-d H:i:s"}} UTC
{% else %}

No observations recorded for {{ satellite.name }}

{% endif %}
Data Frames Decoded - 30 Days
There is no decoded data for this satellite in the last 30 days.
{% if satellite.dashboard_url %} {% endif %}
{% for telemetry in satellite.telemetries.all %}
Decoder: {{ telemetry.name }}
Script Name
{{ telemetry.decoder }}
Decoder Fields
Click here
{% empty %}
No Decoders Found
Help us develop a decoder, you can find instructions at this wiki link
{% endfor %} {% if satellite.telemetry_data_count > 0 and request.user.is_authenticated %}
Data Export (frames)

You can request an export of data for {{ satellite.name }}. Please note that this export process happens in the background, and you will be notified by email when your download is ready. You can request from the following options:

{% endif %} {% if satellite.latest_tle.redistributable %}
Orbital Elements
Latest TLE
NORAD ID
{{ satellite.latest_tle.norad_cat_id }}
TLE source
{{ satellite.latest_tle.source }}
TLE Set
{{ satellite.latest_tle.tle1 }}
{{ satellite.latest_tle.tle2 }}
{% endif %}
{% if request.user.is_authenticated %} {% endif %} {% if perms.base.change_satellite %} {% endif %}
{% endblock %} {% block javascript %} {% if showmap %} {% endif %} {% endblock %}