{% extends "base.html" %} {% load tags %} {% load markdown_extras %} {% load static %} {% block title %} - Ground Station {{ station.name }}{% endblock %} {% block css %} {% endblock css %} {% block content %}

{{ station.id }} - {{ station.name }}

{{ station.status_label }}
Timeframes are in UTC
{% if can_modify_delete_station %} {% if station.observations_stats.future %} Delete future observations {% endif %} {% endif %} {% if request.user == station.owner %} Edit Delete {% endif %}
{% if request.user == station.owner %} Delete {% endif %}
{% if station.has_location %} {% endif %} {% if station.target_utilization %} {% endif %} {% if station.antennas.exists %} {% endif %} {% if station.success_rate %} {% endif %} {% if station.observations_stats.total %} {% endif %} {% if station.client_version %} {% endif %}
Owner {% if station.owner %} {{ station.owner.displayname }} {% else %} - {% endif %}
QTH Locator {{ station.qthlocator }}
Coordinates(lat, lon) {{ station.lat|floatformat:-3 }}°, {{ station.lng|floatformat:-3 }}°
Altitude {{ station.alt }} m
Min Horizon {{ station.horizon }}°
Target Utilization {{ station.target_utilization }} %
Antennas {% for antenna in station.antennas.all %} {{ antenna.antenna_type }} ({{ antenna.bands}}) {% endfor %}
Success Rate
{{ station.success_rate }}% Complete (success)
{{ station.success_rate|percentagerest }}% Complete (danger)
Observations {{ station.observations_stats.total }}
Creation Date {{ station.created|timesince }} ago
Client version {{ station.client_version }}
Last Seen {% if station.last_seen %} {{ station.last_seen|timesince }} ago {% else %} Never {% endif %}
Connected {% if station.is_connected %}Yes{% else %}No{% endif %}
Available {% if station.is_available %}Yes{% else %}No{% endif %}
Testing {% if station.testing %}Yes{% else %}No{% endif %}
Uptime {% if uptime_since %} {{ uptime_since|timesince }} {% else %} - {% endif %}
{{ station.name }}
{% if station.description %}
{{ station.description|convert_markdown|safe }}
{% endif %}
{% if request.user == station.owner %}
{% if station.active_configuration %}
{{ station.active_configuration.name }}
{{ station.active_configuration.configuration|json_script:"station-conf" }} {{ station.active_configuration.schema.schema|json_script:"station-schema" }}

Changed: {{ station.active_configuration_changed }}

Applied to Station: {{ station.active_configuration.applied|default:'pending...' }}

{% else %}
No active configuration
{% endif %}
{% endif %}
Future Passes
{% if can_schedule %} {% endif %}
Name ⤉ ⇴ ⤈ Polar plot
Calculating Future Passes
passes found. Open all for scheduling.
{% for log in station_log %} {% endfor %}
Status Connected Available Testing Datetime Time since Change
{{ log.status_label }} {{ log.is_connected|yesno:"Yes,No" }} {{ log.is_available|yesno:"Yes,No" }} {{ log.testing|yesno:"Yes,No" }} {{ log.changed|date:"Y-m-d H:i:s" }} {{ log.changed|timesince }} ago
{% include 'includes/satellite.html' %} {% endblock content %} {% block javascript %} {% endblock javascript %}