Wyniki PMAXTP

Metoda
{{ method }} ({{ "Peak Over Threshold" if method == "POT" else "Annual Max Precipitation" }})
Lokalizacja zapytania
{{ latitude }}°N, {{ longitude }}°E
{% if data.point %}
Lokalizacja danych (siatka)
{{ "%.4f"|format(data.point.dataLat) }}°N, {{ "%.4f"|format(data.point.dataLon) }}°E
{% endif %}
{% set durations = [5, 10, 15, 30, 45, 60, 90, 120, 180, 360, 720, 1080, 1440] %} {% set probabilities = [0.01, 0.02, 0.03, 0.05, 0.1, 0.2, 0.3, 0.5, 1, 2, 3, 5, 10, 20, 30, 40, 50, 60, 70, 80, 90, 95, 98, 99] %} {% if data.data and data.data.ks %}

Kwantyle opadu maksymalnego [mm]

Wiersze: czas trwania [min], Kolumny: prawdopodobieństwo przewyższenia [%]

{% for p in probabilities %} {% endfor %} {% for dur in durations %} {% if data.data.ks[dur|string] is defined %} {% for p in probabilities %} {% set val = data.data.ks[dur|string][p|string] %} {% endfor %} {% endif %} {% endfor %}
t [min]p={{ p }}%
{{ dur }}{{ "%.2f"|format(val) if val is defined and val is not none else '-' }}
{% endif %} {% if data.data and data.data.sg %}

Górne granice przedziału ufności [mm]

Wiersze: czas trwania [min], Kolumny: prawdopodobieństwo przewyższenia [%]

{% for p in probabilities %} {% endfor %} {% for dur in durations %} {% if data.data.sg[dur|string] is defined %} {% for p in probabilities %} {% set val = data.data.sg[dur|string][p|string] %} {% endfor %} {% endif %} {% endfor %}
t [min]p={{ p }}%
{{ dur }}{{ "%.2f"|format(val) if val is defined and val is not none else '-' }}
{% endif %} {% if data.data and data.data.rb %}

Błędy estymacji kwantyli [mm]

Wiersze: czas trwania [min], Kolumny: prawdopodobieństwo przewyższenia [%]

{% for p in probabilities %} {% endfor %} {% for dur in durations %} {% if data.data.rb[dur|string] is defined %} {% for p in probabilities %} {% set val = data.data.rb[dur|string][p|string] %} {% endfor %} {% endif %} {% endfor %}
t [min]p={{ p }}%
{{ dur }}{{ "%.2f"|format(val) if val is defined and val is not none else '-' }}
{% endif %}