{% extends "layout/base.html" %} {% block title %}About Products{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block panel %} {% endblock %} {% block content %}

Storage of {{ (product_summary_and_location | length) - (hidden_product_list | length) }} products

Open Data Cube {{ datacube_version }} {# TODO: Links to Website, CMI Metadata, DEA, ODC, help? #}
Total indexed products: {{ product_summary_and_location | length}}, hidden products: {{ hidden_product_list | length }}
Download csv for all products locations: csv
{% for product, summary, locations in product_summary_and_location %} {% if product.name not in hidden_product_list %} {% endif %} {% endfor %}
Name Count Location License Definition Summary Age Derived Products Source Products
{{ product.name | product_link }} {{ '{:,d}'.format(summary.dataset_count) }} {% if locations -%} {%- for location in locations -%}
{{- location.common_prefix -}}
{%- endfor -%} {% else -%} - {%- endif %}
{{ product | product_license_link }} doc {{ summary.last_refresh_time | timesince }} {% if summary.derived_products %} {% for p in summary.derived_products %}
  • {{ p | product_link }}
  • {% endfor%} {% else %} - {% endif %}
    {% if summary.source_products %} {% for p in summary.source_products %}
  • {{ p | product_link}}
  • {% endfor%} {% else %} - {% endif %}
    {% endblock %}