{# This file is part of Polyfemos. Polyfemos is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. Polyfemos is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License and GNU General Public License along with Polyfemos. If not, see . Author: Henrik Jänkävaara Copyright: 2019, University of Oulu, Sodankyla Geophysical Observatory License: GNU Lesser General Public License v3.0 or later (https://spdx.org/licenses/LGPL-3.0-or-later.html) #} {% extends 'base.htm' %} {% block head %} {% include 'datepicker.htm' %} {% endblock %} {% block title %} Plot Browser {% endblock %} {% block content %}
{{ form.csrf_token }}
{{ form.startdate.label }} {{ form.startdate(class_="datepicker", size="10px") }} {{ form.rirv.label }} {{ form.rirv() }}
{{ form.enddate.label }} {{ form.enddate(class_="datepicker", size="10px") }} {{ form.ridv.label }} {{ form.ridv() }}
{{ form.headerdate.label }} {{ form.headerdate(class_="datepicker", size="10px") }} {{ form.decimate.label }} {{ form.decimate() }}
{{ form.fromfileformat.label }} {{ form.fromfileformat() }} {{ form.track_len.label }} {{ form.track_len() }}
{% for subfield in form.aor %} {% for kwarg in aorkwargs[subfield.data] %} {% endfor %} {% for kwarg in aorkwargs[subfield.data] %} {% endfor %} {% endfor %}
{{ subfield.label }} {{ subfield }}{{ kwarg.label }}
{{ kwarg(size="3") }}
{{ form.station_ids(size="17") }} {{ form.sohpar_names(size="17") }} {{ form.submit }}
The order of function executions:
1. Remove irrationals
2. Advanced outlier removal
3.* Remove NaNs
3.** Remove identical values
4.** Decimate
* statistics table only
** plot only

In order to calculate 'NEZ' offset values, the data is always read from '*.stf' files.

{% for msg in message_lines %}

{{ msg }}

{% endfor %}
{% for plot in plots %} {% if plot['plotscript'] %} {% endif %} {% endfor %}
{{ plot['plotdiv']|safe }} {{ plot['plotscript']|safe }} {% for row in plot['stats_table'] %} {% for r in row %} {% endfor %} {% endfor %}
{{ r }}

{% for line in plot['infolines'] %} {{ line }}
{% endfor %}
{% endblock %}