{% 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%}
Drag over the overview diagram and zoom to a specific period of time.
Timeseries Diagram
{% 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 %}{% trans 'ID' %} | {{ timeseries.id }} | |
---|---|---|
{% trans 'Related Station' %} | {% if timeseries.related_station %}{{ timeseries.related_station }} | {% else %}{% trans 'None' %} | {% endif %}
{% 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' %} | {% if timeseries.instrument %}{{ timeseries.instrument }} | {% else %}{% trans 'None' %} | {% endif %}
{% 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' %} |
Currently, there is no Timeseries data available!
{% endif %}