{% extends "layout/base.html" %} {% block title %}{{ dataset | printable_dataset }}{% endblock %} {% set extent_geojson = dataset_footprint.__geo_interface__ %} {% set thumbnail_url = dataset | dataset_thumbnail_url %} {% set image_bounds = dataset_bounds.__geo_interface__ if dataset_bounds is not none else 'NONE' %} {% block head %} {{ super() }} {% endblock %} {% block panel %} {% endblock %} {% block content %} {% from "layout/macros.html" import query_param_list, show_raw_document %}

{{ dataset | printable_dataset }}

dataset of product {{ dataset.type.name | product_link }}
Indexed by {{ dataset.indexed_by }} {{ dataset.indexed_time | timesince }}, created {{ dataset | dataset_created | timesince }} {% if dataset.archived_time %}
Archived {{ dataset.archived_time | timesince }}
{% endif %}
{% if dataset_region_code %} Region {{- dataset_region_code -}} {% endif %} for {{ dataset | dataset_day_link(grouping_timezone) }}
{% if extent_geojson %}
{% endif %}

Fields {{ hanchor('fields') }}

{{ query_param_list( dataset.metadata.fields, wide=true, show_dicts=false, descriptions=dataset.type.metadata_type.dataset_fields, dataset=dataset ) }}
{% if source_datasets or derived_datasets %}

Related Datasets {{ hanchor('related-datasets') }}

{% for classifier, s_dataset in source_datasets.items() %}
{{ s_dataset | printable_dataset }}
{% endfor %} {% if source_dataset_overflow %} ... {{ source_dataset_overflow }} more {% endif %}
{{ dataset | printable_dataset }} {% for d_dataset in derived_datasets %} {% endfor %} {% if derived_dataset_overflow %} ... {{ derived_dataset_overflow}} more {% endif %}
{% endif %}

Location{% if dataset.uris | length > 1 %}s{% endif %} {{ hanchor('locations') }}

{% for uri in dataset.uris %}

{{ uri }}

{% set dataset_paths = dataset | dataset_file_paths %} {% if dataset_paths %} {% for name, offset in dataset_paths | dictsort %} {% endfor %}
{{ name }} {{ offset }}
{% endif %}
{% else %} No known active locations {% endfor %} {% if archive_location_times %} {% for uri, archive_time in archive_location_times %}
Archived {{ archive_time | timesince }}:
{{ uri }}
{% endfor %} {% endif %}

Metadata Document {{ hanchor('metadata-doc') }}

RAW As Stac
{{ show_raw_document(dataset_metadata) }}
{% endblock %} {% block body_footer %} {{ super() }} {% if extent_geojson %} {% endif %} {% endblock %}