{% extends "base.html" %} {% load i18n %} {% load static %} {% load permissions %} {% block title %} {% trans 'Enhydris - Time series' %} - {% if timeseries %} {{ timeseries.name }} (id={{ timeseries.id }}){% endif %} {% endblock %} {% block extrajs %} {% endblock %} {% block content%}
{{ timeseries.related_station }} - {{ timeseries.name }}
{% if request.user|can_edit:timeseries.related_station %} {% trans "Edit" %} {% trans "Delete" %} {% endif %}
{% if timeseries %}

Drag over the overview diagram and zoom to a specific period of time.

Timeseries Diagram

{% if timeseries.original_db %}

{% blocktrans %} The information for this time series has been copied from another database. You may be able to download the data from the {% endblocktrans %} {% trans "respective page of the originating database" %}.

{% elif user.is_authenticated or anonymous_can_download_data %}

{% trans "Download time series" %}

{% else %}

{% blocktrans %} You don't have permission to download the time series. {% endblocktrans %}

{% endif %}
{% if timeseries.related_station %} {% else %} {% endif %} {% if timeseries.instrument %} {% else %} {% endif %} {% ifequal timeseries.timestamp_rounding_minutes NULL %} {% else %} {% endifequal %} {% ifnotequal timeseries.timestamp_offset_months NULL %} {% endifnotequal %}
{% trans 'ID' %} {{ timeseries.id }}
{% trans 'Related Station' %}{{ timeseries.related_station }}{% trans 'None' %}
{% trans 'Name' %} {{ timeseries.name }}
{% trans 'Variable' %} {{ timeseries.variable }}
{% trans 'Unit Of Measurement' %} {{ timeseries.unit_of_measurement }}
{% trans 'Precision' %} {{ timeseries.precision }}
{% trans 'Time Zone' %} {{ timeseries.time_zone }}
{% trans 'Remarks' %} {{ timeseries.remarks }}
{% trans 'Instrument' %}{{ timeseries.instrument }}{% trans 'None' %}
{% trans 'Start Date' %} {{ timeseries.start_date|date:"Y/m/d H:i" }}
{% trans 'End Date' %} {{ timeseries.end_date|date:"Y/m/d H:i" }}
{% trans 'Time stamps properties' %}
{% trans 'Time scale' %} {% if not timeseries.time_step %} {% trans 'Variable step' %} {% else %} {{ timeseries.time_step }} {% endif %}
{% trans 'Timestamp regularity' %} {% trans 'Time step is not strict' %}
{% trans 'Timestamp regularity' %} {% trans 'Time step is strict' %}
{% trans ' Timestamp rounding' %} {{ timeseries.timestamp_rounding_minutes }} {% trans 'minutes' %}, {{ timeseries.timestamp_rounding_months }} {% trans 'months' %}
{% trans 'Time stamps reference' %} {% if not timeseries.interval_type %} {% trans 'Instantaneous values' %} {% else %} {% trans 'Interval, '%}{{ timeseries.interval_type }} {% endif %}
{% trans 'Timestamp offset' %} {{ timeseries.timestamp_offset_minutes }} {% trans 'minutes' %}, {{ timeseries.timestamp_offset_months }} {% trans 'months' %}
{% if display_copyright and timeseries.related_station %} {% endif %}
{% else %}

Currently, there is no Timeseries data available!

{% endif %}
{% endblock %}