{% extends "eden-base.html" %} {% block title %}EDEN Multi-parameter Data{% endblock title %} {% block content_header %}

Explore and View EDEN (EVE)

EVE allows users to graph and download data for multiple gages and multiple parameters.

{% endblock content_header %} {% block style %} {% endblock style %} {% block content %}
{# if method="POST", add this tag: {% csrf_token %} #}
{{ param_form.non_field_errors }}
{{ param_form.field_errors }}
{% if param_form.site_list.errors %} {% endif %} {% if param_form.params.errors %} {% endif %} {% if plottables %} {% else %} {% endif %}
Data
{{ param_form.timeseries_start.errors }} {{ param_form.timeseries_start }}
{{ param_form.timeseries_end.errors }} {{ param_form.timeseries_end }}

Select a single gage and one or more parameters to view.

{{ param_form.site_list.errors }}
{{ param_form.site_list }}
{{ param_form.params.errors }}
{{ param_form.params }}
Download Data
(for station {{ plottables.0.gage_name }})
{% for pt in plottables %} {% if pt.has_data %} - {{ pt.name }}
{% endif %} {% endfor %}

After site selection and update, data download will be available here.

{% if plottables %}

{{ plottables.0.title }}

{% for pt in plottables %} {% if pt.has_data %}
{% else %}

No {{ pt.param|capfirst }} data available for {{ pt.gage_name }}.

{% endif %} {% endfor %} {% else %}

After site selection, a graph will be displayed here.

{% endif %}
{% endblock content %}