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

Datasets Metadata Issues {%- if sentry_public_dsn and sentry_public_args.environment %} ({{ sentry_public_args.environment }}) {%- endif -%}

{{ products_summarised|length }} products with summaries. {{ (products_missing | length) or 'None' }} without{% if products_missing %}:{% else %}.{% endif %} {% for name in products_missing %} {{ name | product_link }}{% if not loop.last %}, {% endif %} {% endfor %}
{% if spatial_quality_stats %} {% for stat in spatial_quality_stats | sort(attribute='product.name') %} {% endfor %}
Product Missing footprint Missing CRS Missing Regions Missing Dataset Size
{{ stat.product.name | product_link }} {{ stat.missing_footprint | percent(stat.count) }} {{ stat.missing_srid | percent(stat.count) }} {{ (stat.count - stat.has_region) | percent(stat.count) }} {{ (stat.count - stat.has_file_size) | percent(stat.count) }}
{% else %} Spatial quality view not populated {% endif %}
{% if spatial_quality_stats %}

Largest footprint size {{ hanchor('largest-footprints') }}

Measured from binary storage. JSON/Metadata representation is much larger. {% for stat in spatial_quality_stats | sort(attribute='avg_footprint_bytes', reverse=True) | batch(15) | first %} {% if stat.footprint_size %} {% set avg_footprint_size=stat.footprint_size / stat.count %} {% else %} {% endif %} {% endfor %}
Product Avg. Footprint size
{{ stat.product.name | product_link }} {{ avg_footprint_size | printable_data_size }}
{% endif %}
{% if product_timings_iter %}

Day query speed

Extremely slow queries usually indicate a misconfigured index for the product.

{% else %} View query timings (very slow) {% endif %}
{% endblock %}