General Info
Title {{ metadata.title }}
Abstract {{ metadata.abstract or "N/A" }}
Name {{ metadata.name }}
Namespace {{ metadata.namespace }}
Full Name {{ metadata.full_name }}
{% if metadata.bbox %}
Bounding Box (WGS84)
{% set lower_lon, lower_lat = metadata.bbox.lower.split(" ") %} {% set upper_lon, upper_lat = metadata.bbox.upper.split(" ") %}
Corner Longitude Latitude
Lower {{ "%.6f"|format(lower_lon|float) }} {{ "%.6f"|format(lower_lat|float) }}
Upper {{ "%.6f"|format(upper_lon|float) }} {{ "%.6f"|format(upper_lat|float) }}
{% endif %} {% if metadata.attributes %}
Attributes / Schema
{% for attr in metadata.attributes %} {% endfor %}
Name Local Type Type
{{ attr.name }} {{ attr.localtype }} {{ attr.type }}
{% endif %} {% if metadata.geometry %}
Geometry
Name {{ metadata.geometry.name }}
Local Type {{ metadata.geometry.localtype }}
Type {{ metadata.geometry.type }}
{% endif %}