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

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

Timeframes are in UTC
{% if can_modify_delete_station %} {% if station.future_obs %} Delete future observations {% endif %} {% endif %} {% if request.user == station.owner %} Edit {% endif %}
{% if request.user == station.owner %} {% endif %}
{% if station.has_location %} {% if station.qthlocator %} {% endif %} {% endif %} {% if station.target_utilization %} {% endif %} {% if station.antennas.exists %} {% endif %} {% if station.success_rate %} {% endif %} {% if station.total_obs %} {% 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.total_obs }}
Creation Date {{ station.created|timesince }} ago
Client version {{ station.client_version }}
{{ station.get_status_display }} {% if station.last_seen %} Last seen {{ station.last_seen|timesince }} ago {% else %} Never seen online {% endif %}
Uptime {% if uptime_since %} {{ uptime_since|timesince }} {% else %} - {% endif %}
{{ station.name }}
{% if station.description %}
{{ station.description }}
{% endif %}
{% if request.user == station.owner and station.client_id %}
Basic Configuration
Soapy RX Device
{{ station.satnogs_soapy_rx_device }}
Soapy Antenna
{{ station.satnogs_antenna }}
RX Sample Rate
{{ station.satnogs_rx_samp_rate }}
RF Gain
{{ station.satnogs_rf_gain }}
{% 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 Datetime Time since Change
{{ log.get_status_display }} {{ log.changed|date:"Y-m-d H:i:s" }} {{ log.changed|timesince }} ago
{% include 'includes/satellite.html' %} {% endblock content %} {% block javascript %} {% endblock javascript %}