{% 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 extra_head %} {% endblock %} {% block extrajs %} {% endblock %} {% block content_main %}

{% trans 'Timeseries Details' %} {% if request.user|can_edit:timeseries.related_station %} edit , delete {% endif %}

{% if timeseries %}
{% 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.nominal_offset_minutes NULL %} {% else %} {% endifequal %} {% ifnotequal timeseries.actual_offset_months NULL %} {% endifnotequal %}
{% trans 'ID' %} {{ timeseries.id }}
{% trans 'Related Station' %}{{ timeseries.related_station }}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 }}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" }}
Time stamps properties
{% trans 'Time scale' %} {% if not timeseries.time_step %} {% trans 'Variable step' %} {% else %} {{ timeseries.time_step }} {% endif %}
{% trans 'Time stamps regularity' %} {% trans 'Time step is not strict' %}
{% trans 'Time stamps regularity' %} {% trans 'Time step is strict' %}
{% trans ' Time stamps nominal offset' %} {{ timeseries.nominal_offset_minutes }} {% trans 'minutes' %}, {{ timeseries.nominal_offset_months }} {% trans 'months' %}
{% trans 'Time stamps reference' %} {% if not timeseries.interval_type %} {% trans 'Instantaneous values' %} {% else %} {% trans 'Interval, '%}{{ timeseries.interval_type }} {% endif %}
{% trans 'Actual offset of reference' %} {{ timeseries.actual_offset_minutes }} {% trans 'minutes' %}, {{ timeseries.actual_offset_months }} {% trans 'months' %}
{% if display_copyright and timeseries.related_station %}

{% trans "Station " %}"{{ timeseries.related_station.name }}", {% trans "Copyright (c) " %}{{ timeseries.related_station.copyright_years }}, {{ timeseries.related_station.copyright_holder }}. {% endif %}

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

Timeseries Diagram

{% else %}

Currently, there is no Timeseries data available!

{% endif %}
{% endblock %}