{% extends "obj_repr.html" %} {% set obj = group %} {% set obj_type = "eogroup" %} {% set flag_for_svg = prettier %} {% block icon %} {% if flag_for_svg %} {% if class_name == "measurements" %} {% include "static/images/icons-svg-measurement.svg" %} {% elif class_name == "info" %} {% include "static/images/icons-svg-info.svg" %} {% elif class_name == "quality" %} {% include "static/images/icons-svg-quality.svg" %} {% elif class_name == "attrs" %} {% include "static/images/icons-svg-attributes.svg" %} {% else %} {% include "static/images/icons-svg-group.svg" %} {% endif %} {% else %} [G] {% endif %} {% endblock %} {% block sections %} {% if obj.attrs %}
  • {{obj.attrs|human_readable_attrs}}
  • {% endif %} {% if obj.coords %}
  • {% with coordinates=obj.coordinates_dict %} {% for name, value in coordinates.items() %}
    {{name}}
    {{value}}
    {% endfor %} {% endwith %}
  • {% endif %}
    Subgroups
    {% set ns = namespace (count_groups = 0, count_variables = 0) %} {% for sgroup_name, sgroup in obj.groups %}
  • {% with group=sgroup, class_name=sgroup_name, flag_for_svg=flag_for_svg %} {% include "group.html" %} {% endwith %}
  • {% set ns.count_groups = loop.index %} {% endfor %} {% if ns.count_groups == 0 %}
    None
    {% endif %}
    Variables
    {% for _, variable in obj.variables %}
  • {% with variable=variable %} {% include "variable.html" %} {% endwith %}
  • {% set ns.count_variables = loop.index %} {% endfor %} {% if ns.count_variables == 0 %}
    None
    {% endif %} {% if obj.data %} {% with current_data = obj.data._repr_html_().replace("xarray.Dataset", '
    Dataset
    ') %} {{ current_data|safe }} {% endwith %} {% endif %} {% endblock %}