{% extends "layout/product-section.html" %} {% set active_page = "overview" %} {% set have_data = selected_summary and selected_summary.dataset_count > 0 %} {% set have_displayable_data = selected_summary and selected_summary.footprint_count > 0 %} {% set dataset_limit = 500 %} {% set show_individual_datasets = have_data and selected_summary.dataset_count < dataset_limit %} {% block content %} {% from "layout/macros.html" import query_param_list, show_raw_document %}
{% if not selected_summary.footprint_count %}
{% if selected_summary %} No {% if selected_summary.dataset_count %}displayable{% endif %} datasets for period {% else %} No data: not yet generated {% endif %}
{% endif %}
{% if product %}
{{ product.definition.description }}
{% if have_displayable_data %}
{# Show regions if available, otherwise a plain footprint #} {% if product_region_info %} {% else %} {% endif %}
{% endif %}

{{ product.name }}{{ product_args_label }}

{% if selected_summary.newest_dataset_creation_time %}
Last processed {{ selected_summary.newest_dataset_creation_time | timesince }}
{% endif %} {{ '{:,d}'.format(selected_summary.dataset_count) if selected_summary else 'Unknown number of' }} dataset{% if selected_summary.dataset_count != 1 %}s{% endif %} {% if selected_summary.dataset_count != selected_summary.footprint_count %} {%- if selected_summary.footprint_count -%} ({{ '{:,d}'.format(selected_summary.footprint_count) }} displayable) {%- else -%} (None displayable) {%- endif -%} {% endif %} {% if product_summary.source_products %}

Sources

{% endif %}

Common Metadata ( {{- product.metadata_type.name -}} )

{% if (product.fields | all_values_none) and (product_summary.fixed_metadata == {}) %} No common values {% else %} {{ query_param_list(product.fields, show_nulls=false, descriptions=product.metadata_type.dataset_fields, fallback_dict=product_summary.fixed_metadata or {}) }} {% if product_summary.fixed_metadata is none %} Unknown (needs refresh) {% endif %} {% endif %} {% if have_displayable_data %}

GeoJSON

{% endif %} {% if product_summary.derived_products %}

Derived

{% endif %}

Product information

{# Mostly useful for debugging: hide in page source code. Users should look at page footer instead. #} {% if selected_summary.newest_dataset_creation_time %} {% endif %}
{% endif %}
{% endblock %} {% block body_footer %} {{ super() }} {% from "layout/macros.html" import chart_timeline %} {% endblock %}