{% extends "base.html" %} {% block title %}Central — Monitoring Areas{% endblock %} {% block head %} {% endblock %} {% block content %}

Monitoring Areas

An event is archived (and published to subscribers) if its geometry intersects any area below — the areas form a set-union, so add as many non-contiguous regions as you need. Events with no geometry (space-weather alerts, removal tombstones) are always kept. With no areas configured, every event is kept. Changes apply within about a minute — no restart required.

{% if error %}
{{ error }}
{% endif %} {% if not areas %}
No areas configured — archive will keep every event.
{% endif %}
{% if areas %}
{% for a in areas %} {% endfor %}
NameBounds (N, S, E, W)
{{ a.name }} {{ "%.3f"|format(a.north) }}, {{ "%.3f"|format(a.south) }}, {{ "%.3f"|format(a.east) }}, {{ "%.3f"|format(a.west) }}
{% endif %} {% endblock %}