{% 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 fixed_metadata = product_summary.fixed_metadata or {} %} {% 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 summarised {% 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 %}

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

Common fields

{% 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 fixed fields {% endif %} {% endif %} {% if product_summary.derived_products %}

Derived

{% endif %} {% if have_displayable_data %}

JSON / GeoJSON

{% endif %} {# 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 %}

Location{% if location_samples | length > 1 %}s{% endif %} {{ hanchor('location') }} (samples)

{% for location in location_samples %}
{# Only show a header if there's differing examples #} {% if location.example_uris | length > 1 %} {{ location.common_prefix }} {% endif %}
{% else %}

No recorded locations

{% endfor %} {% if product.definition.measurements %}
{% for measurement in product.definition.measurements %} {% endfor %}

Measurements {{ hanchor('measurements') }}

nodata
{{ measurement.dtype }} {{ measurement.name }} {%- for a in measurement.aliases %} / {{ a }} {%- endfor %} {{ measurement.nodata }}

Total: {{ product.definition.measurements | length }}

{% endif %} {% if product.definition.storage %} {# These fields are enforced by dataset-type-schema.yaml#}

Storage Parameters {{ hanchor('storage-parameters') }}

{{ query_param_list(product.definition.storage, show_dicts=true) }} {% endif %}

Definition {{ hanchor('definition-doc') }}

RAW As Stac
{{ show_raw_document(metadata_doc) }}
{% endblock %} {% block body_footer %} {{ super() }} {% from "layout/macros.html" import chart_timeline %} {% endblock %}