{{item.id}}
Collection: {{item.collection}}
Datetime: {{item.properties['datetime']}}
STAC Version: {{item.stac_version}}
Thumbnail:
{% if 'eo:bands' in item.properties %}
Bands
name |
common_name |
min |
max |
nodata |
scale |
data_type |
{% for band in item.properties['eo:bands']%}
{{band['name']}} |
{{band['common_name']}} |
{{band['min']}} |
{{band['max']}} |
{{band['nodata']}} |
{{band['scale']}} |
{{band['data_type']}} |
{% endfor %}
{% endif %}
BBox
xmin |
ymin |
xmax |
ymax |
{{item.bbox[0]}} |
{{item.bbox[1]}} |
{{item.bbox[2]}} |
{{item.bbox[3]}} |